@@ -443,6 +443,22 @@ pub trait TimeZone: Sized + Clone {
443
443
self . timestamp_opt ( secs, nanos as u32 ) . unwrap ( )
444
444
}
445
445
446
+ /// Makes a new `DateTime` from the number of non-leap microseconds
447
+ /// since January 1, 1970 0:00:00 UTC (aka "UNIX timestamp").
448
+ ///
449
+ /// #Example
450
+ /// ```
451
+ /// use chrono::{Utc, TimeZone};
452
+ ///
453
+ /// assert_eq!(Utc.timestamp_micros(1431648000000).unwrap().timestamp(), 1431648);
454
+ /// ```
455
+ fn timestamp_micros ( & self , micros : i64 ) -> LocalResult < DateTime < Self > > {
456
+ match NaiveDateTime :: from_timestamp_micros ( micros) {
457
+ Some ( dt) => LocalResult :: Single ( self . from_utc_datetime ( & dt) ) ,
458
+ None => LocalResult :: None ,
459
+ }
460
+ }
461
+
446
462
/// Parses a string with the specified format string and returns a
447
463
/// `DateTime` with the current offset.
448
464
///
@@ -568,4 +584,18 @@ mod tests {
568
584
Utc . timestamp_nanos ( i64:: default ( ) ) ;
569
585
Utc . timestamp_nanos ( i64:: min_value ( ) ) ;
570
586
}
587
+
588
+ #[ test]
589
+ fn test_negative_micros ( ) {
590
+ let dt = Utc . timestamp_micros ( -1_000_000 ) . unwrap ( ) ;
591
+ assert_eq ! ( dt. to_string( ) , "1969-12-31 23:59:59 UTC" ) ;
592
+ let dt = Utc . timestamp_micros ( -999_999 ) . unwrap ( ) ;
593
+ assert_eq ! ( dt. to_string( ) , "1969-12-31 23:59:59.000001 UTC" ) ;
594
+ let dt = Utc . timestamp_micros ( -1 ) . unwrap ( ) ;
595
+ assert_eq ! ( dt. to_string( ) , "1969-12-31 23:59:59.999999 UTC" ) ;
596
+ let dt = Utc . timestamp_micros ( -60_000_000 ) . unwrap ( ) ;
597
+ assert_eq ! ( dt. to_string( ) , "1969-12-31 23:59:00 UTC" ) ;
598
+ let dt = Utc . timestamp_micros ( -3_600_000_000 ) . unwrap ( ) ;
599
+ assert_eq ! ( dt. to_string( ) , "1969-12-31 23:00:00 UTC" ) ;
600
+ }
571
601
}
0 commit comments