pub struct AggregateStatus {
pub total: usize,
pub clean: usize,
pub ahead_of_parent: usize,
pub behind_remote: usize,
pub detached: usize,
pub dirty: usize,
pub orphaned: usize,
pub uninitialized: usize,
}Fields§
§total: usize§clean: usize§ahead_of_parent: usize§behind_remote: usize§detached: usize§dirty: usize§orphaned: usize§uninitialized: usizeImplementations§
Source§impl AggregateStatus
impl AggregateStatus
pub fn from_submodules(submodules: &[Submodule]) -> Self
Trait Implementations§
Source§impl Clone for AggregateStatus
impl Clone for AggregateStatus
Source§fn clone(&self) -> AggregateStatus
fn clone(&self) -> AggregateStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AggregateStatus
impl Debug for AggregateStatus
Source§impl Default for AggregateStatus
impl Default for AggregateStatus
Source§fn default() -> AggregateStatus
fn default() -> AggregateStatus
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AggregateStatus
impl RefUnwindSafe for AggregateStatus
impl Send for AggregateStatus
impl Sync for AggregateStatus
impl Unpin for AggregateStatus
impl UnsafeUnpin for AggregateStatus
impl UnwindSafe for AggregateStatus
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