pub enum GitAction {
Stage,
Unstage,
Commit,
Push,
Pull,
Merge,
Rebase,
CherryPick,
Stash,
Tag,
}
Expand description
Git action indicators
Variants§
Stage
Stage changes
Unstage
Unstage changes
Commit
Commit changes
Push
Push changes
Pull
Pull changes
Merge
Merge
Rebase
Rebase
CherryPick
Cherry-pick
Stash
Stash
Tag
Tag
Trait Implementations§
Source§impl UnicodeProvider for GitAction
impl UnicodeProvider for GitAction
impl Copy for GitAction
Auto Trait Implementations§
impl Freeze for GitAction
impl RefUnwindSafe for GitAction
impl Send for GitAction
impl Sync for GitAction
impl Unpin for GitAction
impl UnwindSafe for GitAction
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