pub type MonotonicDuration = Duration<MonotonicTimeline>;
Expand description
This module exists to abstract away the differences between the dev host and target versions
of fuchsia_async::MonotonicDuration
.
In particular, on development hosts fuchsia_async::{MonotonicDuration, MonotonicInstant}
are actually
std::time::{Duration, Instant}
.
A duration on the monotonic timeline.
Aliased Typeยง
struct MonotonicDuration(/* private fields */);