pub enum ResetType {
Soft,
Mixed,
Hard,
}
Expand description
An enumeration of the operations that can be performed for the reset
method on a Repository
.
Variants§
Soft
Move the head to the given commit.
Mixed
Soft plus reset the index to the commit.
Hard
Mixed plus changes in the working tree are discarded.
Trait Implementations§
source§impl PartialEq for ResetType
impl PartialEq for ResetType
impl Copy for ResetType
impl Eq for ResetType
impl StructuralPartialEq for ResetType
Auto Trait Implementations§
impl Freeze for ResetType
impl RefUnwindSafe for ResetType
impl Send for ResetType
impl Sync for ResetType
impl Unpin for ResetType
impl UnwindSafe for ResetType
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