Expand description
An implementation of a monotonic, nanosecond precision timer, like std::time::Instant that
can be serialized and compared across processes.
Modules§
- platform 🔒
Structs§
- Cross
Process Instant - A monotonic, nanosecond precision timer that can be used cross-process. The value
stored internally is purposefully opaque as the origin is platform-specific. They can
be compared and
time::Durationcan be found by subtracting one from another. Thetimecrate is used in this case instead ofstd::timeso that durations can be negative.