pub struct Outcome<P> {
pub actual_index_checksum: ObjectId,
pub statistics: Statistics,
pub progress: P,
}
Expand description
The outcome of the traverse()
method.
Fields
actual_index_checksum: ObjectId
The checksum obtained when hashing the file, which matched the checksum contained within the file.
statistics: Statistics
The statistics obtaine during traversal.
progress: P
The input progress to allow reuse.
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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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