• Home
  • Raw
  • Download

Lines Matching full:resulting

436     /// Returns `None` if the resulting date would be out of range.
447 /// Uses the last day of the month if the day does not exist in the resulting month.
454 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
456 /// - The resulting UTC datetime would be out of range.
457 /// - The resulting local datetime would be out of range (unless `months` is zero).
461 // the resulting date, with which we can return `Some` even for an out of range local in checked_add_months()
473 /// Returns `None` if the resulting date would be out of range.
484 /// Uses the last day of the month if the day does not exist in the resulting month.
491 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
493 /// - The resulting UTC datetime would be out of range.
494 /// - The resulting local datetime would be out of range (unless `months` is zero).
498 // the resulting date, with which we can return `Some` even for an out of range local in checked_sub_months()
511 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
513 /// - The resulting UTC datetime would be out of range.
514 /// - The resulting local datetime would be out of range (unless `days` is zero).
521 // does not validate the resulting date. This allows us to return `Some` even for an out of in checked_add_days()
534 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
536 /// - The resulting UTC datetime would be out of range.
537 /// - The resulting local datetime would be out of range (unless `days` is zero).
541 // does not validate the resulting date. This allows us to return `Some` even for an out of in checked_sub_days()
1218 /// - The resulting date does not exist (February 29 in a non-leap year).
1219 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
1221 /// - The resulting UTC datetime would be out of range.
1222 /// - The resulting local datetime would be out of range (unless the year remains the same).
1239 /// - The resulting date does not exist (for example `month(4)` when day of the month is 31).
1241 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
1255 /// - The resulting date does not exist (for example `month0(3)` when day of the month is 31).
1257 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
1271 /// - The resulting date does not exist (for example `day(31)` in April).
1273 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
1287 /// - The resulting date does not exist (for example `day(30)` in April).
1289 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
1303 /// - The resulting date does not exist (`with_ordinal(366)` in a non-leap year).
1305 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
1319 /// - The resulting date does not exist (`with_ordinal0(365)` in a non-leap year).
1321 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
1355 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
1369 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
1387 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
1396 /// Returns `None` when the resulting `NaiveDateTime` would be invalid.
1475 /// Panics if the resulting date would be out of range.
1494 /// Panics if the resulting date would be out of range.
1515 /// Panics if the resulting date would be out of range.
1535 /// Panics if the resulting date would be out of range.
1550 /// Panics if the resulting date would be out of range.
1564 /// The result will be clamped to valid days in the resulting month, see `checked_add_months` for
1570 /// - The resulting date would be out of range.
1571 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
1593 /// Panics if the resulting date would be out of range.
1612 /// Panics if the resulting date would be out of range.
1635 /// Panics if the resulting date would be out of range.
1655 /// Panics if the resulting date would be out of range.
1670 /// Panics if the resulting date would be out of range.
1684 /// The result will be clamped to valid days in the resulting month, see
1690 /// - The resulting date would be out of range.
1691 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
1726 /// - The resulting date would be out of range.
1727 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
1744 /// - The resulting date would be out of range.
1745 /// - The local time at the resulting date does not exist or is ambiguous, for example during a
1912 /// Converts a `DateTime<Utc>` to a JS `Date`. The resulting value may be lossy,