1// devela::phys::time::instant
2//
3//! Defines [`TimeInstant`].
4//
5// IMPROVE:TODO: make it not depend on std, also on wasm...
67/// A measurement of a monotonically nondecreasing clock.
8#[cfg(feature = "std")]
9pub type TimeInstant = crate::SystemInstant;