Enum rustix::time::DynamicClockId
#[non_exhaustive]
pub enum DynamicClockId<'a> {
Known(ClockId),
Dynamic(BorrowedFd<'a>),
RealtimeAlarm,
Tai,
Boottime,
BoottimeAlarm,
}
Documentation
CLOCK_*
constants for use with clock_gettime_dynamic
.
These constants may be unsupported at runtime, depending on the OS version,
and clock_gettime_dynamic
may fail with INVAL
. See ClockId
for
clocks which are always supported at runtime.
Variants
Dynamic(BorrowedFd<'a>)
BorrowedFd<'a>
Linux dynamic clocks.
RealtimeAlarm
CLOCK_REALTIME_ALARM
, available on Linux >= 3.0
Tai
CLOCK_TAI
, available on Linux >= 3.10
Boottime
CLOCK_BOOTTIME
, available on Linux >= 2.6.39
BoottimeAlarm
CLOCK_BOOTTIME_ALARM
, available on Linux >= 2.6.39
Trait Implementations
impl<'a> Clone for DynamicClockId<'a>
fn clone(&Self) -> DynamicClockId<'a>
impl<'a> Copy for DynamicClockId<'a>
impl<'a> Debug for DynamicClockId<'a>
fn fmt(&Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
Auto Trait Implementations
impl<'a> RefUnwindSafe for DynamicClockId<'a>
impl<'a> Send for DynamicClockId<'a>
impl<'a> Sync for DynamicClockId<'a>
impl<'a> Unpin for DynamicClockId<'a>
impl<'a> UnwindSafe for DynamicClockId<'a>
Blanket Implementations
impl<T> BorrowMut<T> for T
where
T: ?Sized,
where
T: ?Sized,
fn borrow_mut(&mut Self) -> &mut T