pub struct Itimerspec {
pub it_interval: Timespec,
pub it_value: Timespec,
}
Expand description
struct itimerspec
for use with timerfd_gettime
and
timerfd_settime
.
Fields§
§it_interval: Timespec
Interval between times.
it_value: Timespec
Value of the time.
Trait Implementations§
Source§impl Clone for Itimerspec
impl Clone for Itimerspec
Source§fn clone(&self) -> Itimerspec
fn clone(&self) -> Itimerspec
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 moreAuto Trait Implementations§
impl Freeze for Itimerspec
impl RefUnwindSafe for Itimerspec
impl Send for Itimerspec
impl Sync for Itimerspec
impl Unpin for Itimerspec
impl UnwindSafe for Itimerspec
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more