Struct linux_api::time::itimerval [] [src]

pub struct itimerval {
    pub it_interval: timeval,
    pub it_value: timeval,
}

An interval timer based on a timeval

Fields

it_interval: timeval

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

it_value: timeval

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

Trait Implementations

impl Copy for itimerval
[src]

impl Clone for itimerval
[src]

fn clone(&self) -> itimerval

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 itimerval
[src]

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

Formats the value using the given formatter.