[][src]Struct cloudabi::subscription_clock

#[repr(C)]
pub struct subscription_clock {
    pub identifier: userdata,
    pub clock_id: clockid,
    pub timeout: timestamp,
    pub precision: timestamp,
    pub flags: subclockflags,
}

Fields

identifier: userdata

The user-defined unique identifier of the clock.

clock_id: clockid

The clock against which the timestamp should be compared.

timeout: timestamp

The absolute or relative timestamp.

precision: timestamp

The amount of time that the kernel may wait additionally to coalesce with other events.

flags: subclockflags

Flags specifying whether the timeout is absolute or relative.

Trait Implementations

impl Clone for subscription_clock[src]

impl Copy for subscription_clock[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.