pub struct WorkingDirectoryStatus {
pub clean: bool,
pub untracked_changes: Vec<FileStatus>,
}Expand description
Working directory status
Fields§
§clean: boolWhether the working directory has no changes
untracked_changes: Vec<FileStatus>List of files with uncommitted changes
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WorkingDirectoryStatus
impl RefUnwindSafe for WorkingDirectoryStatus
impl Send for WorkingDirectoryStatus
impl Sync for WorkingDirectoryStatus
impl Unpin for WorkingDirectoryStatus
impl UnwindSafe for WorkingDirectoryStatus
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