pub struct GitStatus {
pub modified: u32,
pub added: u32,
pub deleted: u32,
pub untracked: u32,
}Expand description
Parse git status output to get file counts.
Fields§
§modified: u32§added: u32§deleted: u32§untracked: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for GitStatus
impl RefUnwindSafe for GitStatus
impl Send for GitStatus
impl Sync for GitStatus
impl Unpin for GitStatus
impl UnsafeUnpin for GitStatus
impl UnwindSafe for GitStatus
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