pub struct RepoState {
pub root_path: PathBuf,
pub submodules: Vec<Submodule>,
pub total: usize,
pub clean_count: usize,
pub needs_attention: Vec<String>,
pub parent_dirty: bool,
}Fields§
§root_path: PathBuf§submodules: Vec<Submodule>§total: usize§clean_count: usize§needs_attention: Vec<String>§parent_dirty: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RepoState
impl RefUnwindSafe for RepoState
impl Send for RepoState
impl Sync for RepoState
impl Unpin for RepoState
impl UnsafeUnpin for RepoState
impl UnwindSafe for RepoState
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