pub enum SendCommand {
Nop,
Default(&'static Command),
Position(&'static Command, usize, usize),
Repeat(&'static Command, usize, usize, usize),
Slice(&'static Command, usize),
}
Variants§
Nop
Default(&'static Command)
Position(&'static Command, usize, usize)
Repeat(&'static Command, usize, usize, usize)
Slice(&'static Command, usize)
Trait Implementations§
Source§impl Clone for SendCommand
impl Clone for SendCommand
Source§fn clone(&self) -> SendCommand
fn clone(&self) -> SendCommand
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 PartialEq for SendCommand
impl PartialEq for SendCommand
impl Copy for SendCommand
impl StructuralPartialEq for SendCommand
Auto Trait Implementations§
impl Freeze for SendCommand
impl RefUnwindSafe for SendCommand
impl Send for SendCommand
impl Sync for SendCommand
impl Unpin for SendCommand
impl UnwindSafe for SendCommand
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