struct InnerState {
next_wake: Option<NonZeroU64>,
wheel: Wheel,
}
Expand description
Time state shared which must be protected by a Mutex
Fields§
§next_wake: Option<NonZeroU64>
The earliest time at which we promise to wake up without unparking.
wheel: Wheel
Timer wheel.
Auto Trait Implementations§
impl Freeze for InnerState
impl !RefUnwindSafe for InnerState
impl Send for InnerState
impl Sync for InnerState
impl Unpin for InnerState
impl !UnwindSafe for InnerState
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