1use super::Timestamp; 2 3impl Timestamp { 4 /// The current time. 5 #[inline] 6 pub fn now() -> Self { 7 Self(re_log_types::Timestamp::now().nanos_since_epoch().into()) 8 } 9}