pub enum HistoryOperation {
Commit,
CherryPick,
Revert,
Rebase,
Bisect,
Stash,
Notes,
History,
}Variants§
Trait Implementations§
Source§impl Clone for HistoryOperation
impl Clone for HistoryOperation
Source§fn clone(&self) -> HistoryOperation
fn clone(&self) -> HistoryOperation
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 HistoryOperation
impl Debug for HistoryOperation
impl Eq for HistoryOperation
Source§impl PartialEq for HistoryOperation
impl PartialEq for HistoryOperation
Source§fn eq(&self, other: &HistoryOperation) -> bool
fn eq(&self, other: &HistoryOperation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HistoryOperation
Auto Trait Implementations§
impl Freeze for HistoryOperation
impl RefUnwindSafe for HistoryOperation
impl Send for HistoryOperation
impl Sync for HistoryOperation
impl Unpin for HistoryOperation
impl UnsafeUnpin for HistoryOperation
impl UnwindSafe for HistoryOperation
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