1use std::time::UNIX_EPOCH; 2 3pub fn time_now() -> u64 { 4 std::time::SystemTime::now() 5 .duration_since(UNIX_EPOCH) 6 .expect("oops") 7 .as_micros() as u64 8}