pub struct Outcome<P> {
pub multi_index_checksum: ObjectId,
pub progress: P,
}
Expand description
The result of multi_index::File::write_from_index_paths()
.
Fields
multi_index_checksum: ObjectId
The calculated multi-index checksum of the file at multi_index_path
.
progress: P
The input progress
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