pub enum SequencerCommand {
Pick(ObjectId),
Revert(ObjectId),
Edit(ObjectId),
Squash(ObjectId),
Fixup(ObjectId),
Exec(Vec<u8>),
}Variants§
Trait Implementations§
Source§impl Clone for SequencerCommand
impl Clone for SequencerCommand
Source§fn clone(&self) -> SequencerCommand
fn clone(&self) -> SequencerCommand
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 moreSource§impl Debug for SequencerCommand
impl Debug for SequencerCommand
impl Eq for SequencerCommand
Source§impl PartialEq for SequencerCommand
impl PartialEq for SequencerCommand
Source§fn eq(&self, other: &SequencerCommand) -> bool
fn eq(&self, other: &SequencerCommand) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SequencerCommand
Auto Trait Implementations§
impl Freeze for SequencerCommand
impl RefUnwindSafe for SequencerCommand
impl Send for SequencerCommand
impl Sync for SequencerCommand
impl Unpin for SequencerCommand
impl UnsafeUnpin for SequencerCommand
impl UnwindSafe for SequencerCommand
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