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
Auto Trait Implementations
impl RefUnwindSafe for StashApplyProgress
impl Send for StashApplyProgress
impl Sync for StashApplyProgress
impl Unpin for StashApplyProgress
impl UnwindSafe for StashApplyProgress
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more