Sha256: a19ef2b1e27286ad7af7004605696d81cc661a09ccb9284b68f69a8c05d3d388
Contents?: true
Size: 246 Bytes
Versions: 15
Compression:
Stored size: 246 Bytes
Contents
pub mod host; use cap_std::time::Duration; pub trait HostWallClock: Send { fn resolution(&self) -> Duration; fn now(&self) -> Duration; } pub trait HostMonotonicClock: Send { fn resolution(&self) -> u64; fn now(&self) -> u64; }
Version data entries
15 entries across 15 versions & 1 rubygems