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§
Source§impl Ord for Wakeup
impl Ord for Wakeup
Source§impl PartialOrd for Wakeup
impl PartialOrd for Wakeup
impl Copy for Wakeup
impl Eq 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 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