#[non_exhaustive]pub struct RecoverySummary { /* private fields */ }Expand description
The result of successfully repairing one incomplete final data frame.
Implementations§
Source§impl RecoverySummary
impl RecoverySummary
Sourcepub fn original_file_size(&self) -> u64
pub fn original_file_size(&self) -> u64
The file length observed before the repair.
Sourcepub fn repaired_file_size(&self) -> u64
pub fn repaired_file_size(&self) -> u64
The file length after truncation and post-repair validation.
Sourcepub fn bytes_removed(&self) -> u64
pub fn bytes_removed(&self) -> u64
The number of bytes removed from the incomplete tail.
Trait Implementations§
Source§impl Clone for RecoverySummary
impl Clone for RecoverySummary
Source§fn clone(&self) -> RecoverySummary
fn clone(&self) -> RecoverySummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RecoverySummary
Source§impl Debug for RecoverySummary
impl Debug for RecoverySummary
impl Eq for RecoverySummary
Source§impl PartialEq for RecoverySummary
impl PartialEq for RecoverySummary
impl StructuralPartialEq for RecoverySummary
Auto Trait Implementations§
impl Freeze for RecoverySummary
impl RefUnwindSafe for RecoverySummary
impl Send for RecoverySummary
impl Sync for RecoverySummary
impl Unpin for RecoverySummary
impl UnsafeUnpin for RecoverySummary
impl UnwindSafe for RecoverySummary
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