pub struct RecoveryReport {
pub path: PathBuf,
pub records: usize,
pub dropped: usize,
}Expand description
Outcome of recovering one spool file.
Fields§
§path: PathBufPath that was recovered.
records: usizeNumber of valid records.
dropped: usizeNumber of records dropped due to CRC mismatch / truncation.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RecoveryReport
impl RefUnwindSafe for RecoveryReport
impl Send for RecoveryReport
impl Sync for RecoveryReport
impl Unpin for RecoveryReport
impl UnsafeUnpin for RecoveryReport
impl UnwindSafe for RecoveryReport
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