pub struct Outcome<P> {
pub loose_object_stores: Vec<LooseObjectStatistics>,
pub index_statistics: Vec<IndexStatistics>,
pub progress: P,
}
Expand description
Returned by Store::verify_integrity()
.
Fields§
§loose_object_stores: Vec<LooseObjectStatistics>
Statistics for validated loose object stores.
index_statistics: Vec<IndexStatistics>
Pack traversal statistics for each index and their pack(s)
progress: P
The provided progress instance.
Auto Trait Implementations§
impl<P> RefUnwindSafe for Outcome<P>where P: RefUnwindSafe,
impl<P> Send for Outcome<P>where P: Send,
impl<P> Sync for Outcome<P>where P: Sync,
impl<P> Unpin for Outcome<P>where P: Unpin,
impl<P> UnwindSafe for Outcome<P>where P: UnwindSafe,
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