[][src]Struct linux::time::clock::Clock

pub struct Clock(pub clockid_t);

A clock that can be used to measure time.

[field, 1] The integer representing the clock.

Methods

impl Clock[src]

pub fn get_time(self) -> Result<Time>[src]

Returns the current time of the clock.

pub fn set_time(self, t: Time) -> Result[src]

Sets the time of the clock.

[argument, t] The new time of the clock.

pub fn resolution(self) -> Result<Time>[src]

Returns the resolution of the clock.

pub fn sleep_to(self, t: Time) -> Result[src]

Sleeps until an absolute time.

[argument, t] The time until which to sleep.

pub fn sleep_for(self, t: Time) -> Result[src]

Sleeps for an amount of time.

[argument, t] The amount of time to sleep.

pub fn timer(self) -> Result<Timer>[src]

Creates a new timer.

pub fn timer_non_blocking(self) -> Result<Timer>[src]

Creates a new non-blocking timer.

Trait Implementations

impl Pod for Clock[src]

impl Eq for Clock[src]

impl PartialEq<Clock> for Clock[src]

impl Copy for Clock[src]

impl Clone for Clock[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Clock

impl Sync for Clock

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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.

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

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

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