pub enum LocalChanges {
Clean,
Present {
stashes: usize,
staged: usize,
unstaged: usize,
untracked: usize,
},
}Variants§
Trait Implementations§
Source§impl Debug for LocalChanges
impl Debug for LocalChanges
Source§impl PartialEq for LocalChanges
impl PartialEq for LocalChanges
impl Eq for LocalChanges
impl StructuralPartialEq for LocalChanges
Auto Trait Implementations§
impl Freeze for LocalChanges
impl RefUnwindSafe for LocalChanges
impl Send for LocalChanges
impl Sync for LocalChanges
impl Unpin for LocalChanges
impl UnwindSafe for LocalChanges
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