Module cap_std::time

source ·
Expand description

A capability-based clock API modeled after std::time.

This corresponds to std::time.

Instead of std::time’s methods which return the current time, this crate has methods on SystemClock and MonotonicClock.

Structs

  • A Duration type to represent a span of time, typically used for system timeouts.
  • A measurement of a monotonically nondecreasing clock.
  • A reference to a monotonically nondecreasing clock.
  • A reference to a system clock, useful for talking to external entities like the file system or other processes.
  • A measurement of the system clock, useful for talking to external entities like the file system or other processes.
  • An error returned from the duration_since and elapsed methods on SystemTime, used to learn how far in the opposite direction a system time lies.