pub enum Command<Message> {
Exit,
None,
Single(Action<Message>),
Batch(Vec<Action<Message>>),
}Variants§
Implementations§
Auto Trait Implementations§
impl<Message> Freeze for Command<Message>where
Message: Freeze,
impl<Message> !RefUnwindSafe for Command<Message>
impl<Message> !Send for Command<Message>
impl<Message> !Sync for Command<Message>
impl<Message> Unpin for Command<Message>where
Message: Unpin,
impl<Message> !UnwindSafe for Command<Message>
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