#[repr(u32)]
#[non_exhaustive]
pub enum ClockId {
Realtime,
Monotonic,
ProcessCPUTime,
ThreadCPUTime,
RealtimeCoarse,
MonotonicCoarse,
MonotonicRaw,
}
Expand description
CLOCK_*
constants for use with clock_gettime
.
These constants are always supported at runtime, so clock_gettime
never
has to fail with INVAL
due to an unsupported clock. See
DynamicClockId
for a greater set of clocks, with the caveat that not
all of them are always supported.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Realtime
CLOCK_REALTIME
Monotonic
CLOCK_MONOTONIC
ProcessCPUTime
CLOCK_PROCESS_CPUTIME_ID
ThreadCPUTime
CLOCK_THREAD_CPUTIME_ID
RealtimeCoarse
CLOCK_REALTIME_COARSE
MonotonicCoarse
CLOCK_MONOTONIC_COARSE
MonotonicRaw
CLOCK_MONOTONIC_RAW
Trait Implementations
impl Copy for ClockId
impl Eq for ClockId
impl StructuralEq for ClockId
impl StructuralPartialEq for ClockId
Auto Trait Implementations
impl RefUnwindSafe for ClockId
impl Send for ClockId
impl Sync for ClockId
impl Unpin for ClockId
impl UnwindSafe for ClockId
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more