Enum git2::StashApplyProgress
source · pub enum StashApplyProgress {
None,
LoadingStash,
AnalyzeIndex,
AnalyzeModified,
AnalyzeUntracked,
CheckoutUntracked,
CheckoutModified,
Done,
}
Variants§
None
None
LoadingStash
Loading the stashed data from the object database
AnalyzeIndex
The stored index is being analyzed
AnalyzeModified
The modified files are being analyzed
AnalyzeUntracked
The untracked and ignored files are being analyzed
CheckoutUntracked
The untracked files are being written to disk
CheckoutModified
The modified files are being written to disk
Done
The stash was applied successfully
Trait Implementations§
source§impl Clone for StashApplyProgress
impl Clone for StashApplyProgress
source§fn clone(&self) -> StashApplyProgress
fn clone(&self) -> StashApplyProgress
Returns a copy of the value. Read more
1.0.0 · 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 StashApplyProgress
impl Debug for StashApplyProgress
source§impl PartialEq for StashApplyProgress
impl PartialEq for StashApplyProgress
source§fn eq(&self, other: &StashApplyProgress) -> bool
fn eq(&self, other: &StashApplyProgress) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for StashApplyProgress
impl Eq for StashApplyProgress
impl StructuralPartialEq for StashApplyProgress
Auto Trait Implementations§
impl Freeze for StashApplyProgress
impl RefUnwindSafe for StashApplyProgress
impl Send for StashApplyProgress
impl Sync for StashApplyProgress
impl Unpin for StashApplyProgress
impl UnwindSafe for StashApplyProgress
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