pub struct SyncStats {Show 22 fields
pub files_copied: u64,
pub files_reflinked: u64,
pub files_cfr: u64,
pub files_small: u64,
pub files_skipped: u64,
pub files_delta: u64,
pub files_deleted: u64,
pub dirs_created: u64,
pub dirs_pruned: u64,
pub bytes_copied: u64,
pub bytes_reflinked: u64,
pub bytes_cfr: u64,
pub bytes_small: u64,
pub bytes_delta: u64,
pub errors: u64,
pub sigs_stored: u64,
pub symlinks_replicated: u64,
pub dirs_hashed: u64,
pub files_verified: u64,
pub verify_failures: u64,
pub files_nfs_bypass: u64,
pub bytes_nfs_bypass: u64,
}Expand description
Copy statistics returned from sync operations.
Fields§
§files_copied: u64§files_reflinked: u64§files_cfr: u64§files_small: u64§files_skipped: u64§files_delta: u64§files_deleted: u64§dirs_created: u64§dirs_pruned: u64§bytes_copied: u64§bytes_reflinked: u64§bytes_cfr: u64§bytes_small: u64§bytes_delta: u64§errors: u64§sigs_stored: u64§symlinks_replicated: u64§dirs_hashed: u64§files_verified: u64§verify_failures: u64§files_nfs_bypass: u64§bytes_nfs_bypass: u64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SyncStats
impl RefUnwindSafe for SyncStats
impl Send for SyncStats
impl Sync for SyncStats
impl Unpin for SyncStats
impl UnsafeUnpin for SyncStats
impl UnwindSafe for SyncStats
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere
T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
The none-equivalent value.