Struct calloop::sources::timer::TimeoutData
source · struct TimeoutData {
deadline: Instant,
token: RefCell<Option<Token>>,
counter: u32,
}
Fields§
§deadline: Instant
§token: RefCell<Option<Token>>
§counter: u32
Trait Implementations§
source§impl Debug for TimeoutData
impl Debug for TimeoutData
source§impl Ord for TimeoutData
impl Ord for TimeoutData
source§impl PartialEq for TimeoutData
impl PartialEq for TimeoutData
source§impl PartialOrd for TimeoutData
impl PartialOrd for TimeoutData
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for TimeoutData
Auto Trait Implementations§
impl !Freeze for TimeoutData
impl !RefUnwindSafe for TimeoutData
impl Send for TimeoutData
impl !Sync for TimeoutData
impl Unpin for TimeoutData
impl UnwindSafe for TimeoutData
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