pub enum StashCommands {
Push {
message: Option<String>,
},
Pop,
Apply {
index: Option<usize>,
},
List,
Drop {
index: Option<usize>,
},
}Variants§
Trait Implementations§
Source§impl Clone for StashCommands
impl Clone for StashCommands
Source§fn clone(&self) -> StashCommands
fn clone(&self) -> StashCommands
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StashCommands
impl RefUnwindSafe for StashCommands
impl Send for StashCommands
impl Sync for StashCommands
impl Unpin for StashCommands
impl UnsafeUnpin for StashCommands
impl UnwindSafe for StashCommands
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