Struct linux_api::time::itimerspec [] [src]

pub struct itimerspec {
    pub it_interval: timespec,
    pub it_value: timespec,
}

An interval timer based on a timespec

Fields

it_interval: timespec

The period of time this timer should run for (Need to verify)

it_value: timespec

The amount of time left until expiration (Need to verify)

Trait Implementations

impl Copy for itimerspec
[src]

impl Clone for itimerspec
[src]

fn clone(&self) -> itimerspec

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Debug for itimerspec
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.