#[repr(u32)]pub enum clockid_t {
_CLOCK_REALTIME = 0,
_CLOCK_MONOTONIC = 6,
_CLOCK_MONOTONIC_RAW = 4,
_CLOCK_MONOTONIC_RAW_APPROX = 5,
_CLOCK_UPTIME_RAW = 8,
_CLOCK_UPTIME_RAW_APPROX = 9,
_CLOCK_PROCESS_CPUTIME_ID = 12,
_CLOCK_THREAD_CPUTIME_ID = 16,
}Variants§
_CLOCK_REALTIME = 0
_CLOCK_MONOTONIC = 6
_CLOCK_MONOTONIC_RAW = 4
_CLOCK_MONOTONIC_RAW_APPROX = 5
_CLOCK_UPTIME_RAW = 8
_CLOCK_UPTIME_RAW_APPROX = 9
_CLOCK_PROCESS_CPUTIME_ID = 12
_CLOCK_THREAD_CPUTIME_ID = 16
Trait Implementations§
impl Copy for clockid_t
impl Eq for clockid_t
impl StructuralPartialEq for clockid_t
Auto Trait Implementations§
impl Freeze for clockid_t
impl RefUnwindSafe for clockid_t
impl Send for clockid_t
impl Sync for clockid_t
impl Unpin for clockid_t
impl UnwindSafe for clockid_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more