@@ -177,6 +177,10 @@ mod tests;
177
177
/// For such cases the human-readable representation is ambiguous and would be read back to the next
178
178
/// non-leap second.
179
179
///
180
+ /// A `NaiveTime` with a leap second that is not on a minute boundary can only be created from a
181
+ /// [`DateTime`](crate::DateTime) with fractional minutes as offset, or using
182
+ /// [`Timelike::with_nanosecond()`].
183
+ ///
180
184
/// ```
181
185
/// use chrono::{FixedOffset, NaiveDate, TimeZone};
182
186
///
@@ -239,8 +243,8 @@ impl NaiveTime {
239
243
240
244
/// Makes a new `NaiveTime` from hour, minute and second.
241
245
///
242
- /// No [leap second](#leap-second-handling) is allowed here;
243
- /// use `NaiveTime::from_hms_*_opt` methods with a subsecond parameter instead .
246
+ /// The millisecond part is allowed to exceed 1,000,000,000 in order to represent a
247
+ /// [leap second](#leap-second-handling), but only when `sec == 59` .
244
248
///
245
249
/// # Errors
246
250
///
@@ -282,8 +286,8 @@ impl NaiveTime {
282
286
283
287
/// Makes a new `NaiveTime` from hour, minute, second and millisecond.
284
288
///
285
- /// The millisecond part can exceed 1,000
286
- /// in order to represent the [leap second](#leap-second-handling).
289
+ /// The millisecond part is allowed to exceed 1,000,000,000 in order to represent a
290
+ /// [leap second](#leap-second-handling), but only when `sec == 59` .
287
291
///
288
292
/// # Errors
289
293
///
@@ -318,8 +322,8 @@ impl NaiveTime {
318
322
319
323
/// Makes a new `NaiveTime` from hour, minute, second and microsecond.
320
324
///
321
- /// The microsecond part can exceed 1,000,000
322
- /// in order to represent the [leap second](#leap-second-handling).
325
+ /// The microsecond part is allowed to exceed 1,000,000,000 in order to represent a
326
+ /// [leap second](#leap-second-handling), but only when `sec == 59` .
323
327
///
324
328
/// # Panics
325
329
///
@@ -333,8 +337,8 @@ impl NaiveTime {
333
337
334
338
/// Makes a new `NaiveTime` from hour, minute, second and microsecond.
335
339
///
336
- /// The microsecond part can exceed 1,000,000
337
- /// in order to represent the [leap second](#leap-second-handling).
340
+ /// The microsecond part is allowed to exceed 1,000,000,000 in order to represent a
341
+ /// [leap second](#leap-second-handling), but only when `sec == 59` .
338
342
///
339
343
/// # Errors
340
344
///
@@ -369,8 +373,8 @@ impl NaiveTime {
369
373
370
374
/// Makes a new `NaiveTime` from hour, minute, second and nanosecond.
371
375
///
372
- /// The nanosecond part can exceed 1,000,000,000
373
- /// in order to represent the [leap second](#leap-second-handling).
376
+ /// The nanosecond part is allowed to exceed 1,000,000,000 in order to represent a
377
+ /// [leap second](#leap-second-handling), but only when `sec == 59` .
374
378
///
375
379
/// # Panics
376
380
///
@@ -384,8 +388,8 @@ impl NaiveTime {
384
388
385
389
/// Makes a new `NaiveTime` from hour, minute, second and nanosecond.
386
390
///
387
- /// The nanosecond part can exceed 1,000,000,000
388
- /// in order to represent the [leap second](#leap-second-handling).
391
+ /// The nanosecond part is allowed to exceed 1,000,000,000 in order to represent a
392
+ /// [leap second](#leap-second-handling), but only when `sec == 59` .
389
393
///
390
394
/// # Errors
391
395
///
@@ -409,7 +413,10 @@ impl NaiveTime {
409
413
#[ inline]
410
414
#[ must_use]
411
415
pub const fn from_hms_nano_opt ( hour : u32 , min : u32 , sec : u32 , nano : u32 ) -> Option < NaiveTime > {
412
- if hour >= 24 || min >= 60 || sec >= 60 || nano >= 2_000_000_000 {
416
+ if ( hour >= 24 || min >= 60 || sec >= 60 )
417
+ || ( nano >= 1_000_000_000 && sec != 59 )
418
+ || nano >= 2_000_000_000
419
+ {
413
420
return None ;
414
421
}
415
422
let secs = hour * 3600 + min * 60 + sec;
0 commit comments