pub struct Wakeup { /* private fields */ }Expand description
Used to indicate that we need to wake up the event loop.
This is a ZST used by the underlying event loop to wake up the event loop. It is not used directly by the user.
It is public because it is used by the Filter type. Generally, you don’t need to use it.
Trait Implementations§
impl Copy for Wakeup
impl Eq for Wakeup
Source§impl Ord for Wakeup
impl Ord for Wakeup
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for Wakeup
impl PartialOrd for Wakeup
impl StructuralPartialEq for Wakeup
Auto Trait Implementations§
impl Freeze for Wakeup
impl RefUnwindSafe for Wakeup
impl Send for Wakeup
impl Sync for Wakeup
impl Unpin for Wakeup
impl UnsafeUnpin for Wakeup
impl UnwindSafe for Wakeup
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