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> Freeze for Outcome<P>where
P: Freeze,
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