pub enum TodoCommand {
Show 15 variants
Pick,
Revert,
Edit,
Reword,
Fixup,
Squash,
Exec,
Break,
Label,
Reset,
Merge,
UpdateRef,
Noop,
Drop,
Comment,
}Expand description
todo_command_info order matters: parsing tries commands in this order.
Variants§
Implementations§
Source§impl TodoCommand
impl TodoCommand
Trait Implementations§
Source§impl Clone for TodoCommand
impl Clone for TodoCommand
Source§fn clone(&self) -> TodoCommand
fn clone(&self) -> TodoCommand
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 moreimpl Copy for TodoCommand
Source§impl Debug for TodoCommand
impl Debug for TodoCommand
impl Eq for TodoCommand
Source§impl PartialEq for TodoCommand
impl PartialEq for TodoCommand
Source§fn eq(&self, other: &TodoCommand) -> bool
fn eq(&self, other: &TodoCommand) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TodoCommand
Auto Trait Implementations§
impl Freeze for TodoCommand
impl RefUnwindSafe for TodoCommand
impl Send for TodoCommand
impl Sync for TodoCommand
impl Unpin for TodoCommand
impl UnsafeUnpin for TodoCommand
impl UnwindSafe for TodoCommand
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