pub struct Outcome<P> {
pub actual_index_checksum: ObjectId,
pub pack_traverse_outcome: Statistics,
pub progress: P,
}
Expand description
Returned by Bundle::verify_integrity()
.
Fields
actual_index_checksum: ObjectId
The computed checksum of the index which matched the stored one.
pack_traverse_outcome: Statistics
The packs traversal outcome
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more