pub struct CommandWaker(/* private fields */);
Expand description
A waker for the event loop, triggered when a command is sent.
Implementations§
Source§impl CommandWaker
impl CommandWaker
Sourcepub fn new(wake: impl Fn() + Send + Sync + 'static) -> CommandWaker
pub fn new(wake: impl Fn() + Send + Sync + 'static) -> CommandWaker
Create a new CommandWaker
.
Trait Implementations§
Source§impl Clone for CommandWaker
impl Clone for CommandWaker
Source§fn clone(&self) -> CommandWaker
fn clone(&self) -> CommandWaker
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 moreSource§impl Debug for CommandWaker
impl Debug for CommandWaker
Auto Trait Implementations§
impl Freeze for CommandWaker
impl !RefUnwindSafe for CommandWaker
impl Send for CommandWaker
impl Sync for CommandWaker
impl Unpin for CommandWaker
impl !UnwindSafe for CommandWaker
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