pub enum TimeInput {
Microseconds(u64),
SystemTime(SystemTime),
}Variants§
Microseconds(u64)
SystemTime(SystemTime)
Implementations§
Trait Implementations§
Source§impl From<SystemTime> for TimeInput
impl From<SystemTime> for TimeInput
Source§fn from(value: SystemTime) -> Self
fn from(value: SystemTime) -> Self
Converts to this type from the input type.