Enum nix::sys::timer::Expiration
source · Expand description
An enumeration allowing the definition of the expiration time of an alarm, recurring or not.
Variants§
OneShot(TimeSpec)
Alarm will trigger once after the time given in TimeSpec
IntervalDelayed(TimeSpec, TimeSpec)
Alarm will trigger after a specified delay and then every interval of time.
Interval(TimeSpec)
Alarm will trigger every specified interval of time.
Trait Implementations§
source§impl Clone for Expiration
impl Clone for Expiration
source§fn clone(&self) -> Expiration
fn clone(&self) -> Expiration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more