1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#[cfg(all(feature = "std", not(feature = "quanta")))]
/// The default clock that reports [`Instant`][std::time::Instant]s.
pub type DefaultClock = crate::clock::MonotonicClock;

#[cfg(all(feature = "std", feature = "quanta"))]
/// The default clock using [`quanta`] for extremely fast timekeeping (at a 100ns resolution).
pub type DefaultClock = crate::clock::QuantaClock;

#[cfg(not(feature = "std"))]
/// The default `no_std` clock that reports [`Durations`][core::time::Duration] must be advanced by the
/// program.
pub type DefaultClock = crate::clock::FakeRelativeClock;