pub struct DdStats {
pub records_in_full: u64,
pub records_in_partial: u64,
pub records_out_full: u64,
pub records_out_partial: u64,
pub bytes_copied: u64,
}Expand description
Statistics from a dd copy operation.
Fields§
§records_in_full: u64Number of full input blocks read.
records_in_partial: u64Number of partial input blocks read.
records_out_full: u64Number of full output blocks written.
records_out_partial: u64Number of partial output blocks written.
bytes_copied: u64Total bytes copied.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DdStats
impl RefUnwindSafe for DdStats
impl Send for DdStats
impl Sync for DdStats
impl Unpin for DdStats
impl UnsafeUnpin for DdStats
impl UnwindSafe for DdStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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