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
sourceimpl Clone for StashApplyProgress
impl Clone for StashApplyProgress
sourcefn clone(&self) -> StashApplyProgress
fn clone(&self) -> StashApplyProgress
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for StashApplyProgress
impl Debug for StashApplyProgress
impl Copy for StashApplyProgress
impl Eq for StashApplyProgress
impl StructuralEq for StashApplyProgress
impl StructuralPartialEq for StashApplyProgress
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more