pub struct Outcome {
pub files_updated: usize,
pub bytes_written: u64,
pub collisions: Vec<Collision, Global>,
pub errors: Vec<ErrorRecord, Global>,
}
Fields
files_updated: usize
The amount of files updated, or created.
bytes_written: u64
The amount of bytes written to disk,
collisions: Vec<Collision, Global>
errors: Vec<ErrorRecord, Global>
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Outcome
impl Send for Outcome
impl Sync for Outcome
impl Unpin for Outcome
impl !UnwindSafe for Outcome
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