pub struct CommandProxy { /* private fields */ }
Expand description
A clonable channel for sending Command
s.
Implementations§
Source§impl CommandProxy
impl CommandProxy
Sourcepub fn new(waker: CommandWaker) -> (CommandProxy, CommandReceiver)
pub fn new(waker: CommandWaker) -> (CommandProxy, CommandReceiver)
Create a new CommandProxy
channel.
Sourcepub fn cmd_silent(&self, command: Command)
pub fn cmd_silent(&self, command: Command)
Send a command without waking the event loop.
This is almost never what you want to do. Use CommandProxy::cmd
instead.
Sourcepub fn spawn_async(&self, future: impl Future<Output = ()> + Send + 'static)
pub fn spawn_async(&self, future: impl Future<Output = ()> + Send + 'static)
Spawn a future that is polled when commands are handled.
Trait Implementations§
Source§impl Clone for CommandProxy
impl Clone for CommandProxy
Source§fn clone(&self) -> CommandProxy
fn clone(&self) -> CommandProxy
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 moreAuto Trait Implementations§
impl Freeze for CommandProxy
impl !RefUnwindSafe for CommandProxy
impl Send for CommandProxy
impl Sync for CommandProxy
impl Unpin for CommandProxy
impl !UnwindSafe for CommandProxy
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