pub struct CorrectionStats {
pub total_chunks: u64,
pub perfect_chunks: u64,
pub corrected_chunks: u64,
pub correction_bytes: u64,
pub original_bytes: u64,
pub correction_ratio: f64,
pub perfect_ratio: f64,
}Expand description
Statistics about corrections
Fields§
§total_chunks: u64§perfect_chunks: u64§corrected_chunks: u64§correction_bytes: u64§original_bytes: u64§correction_ratio: f64§perfect_ratio: f64Trait Implementations§
Source§impl Clone for CorrectionStats
impl Clone for CorrectionStats
Source§fn clone(&self) -> CorrectionStats
fn clone(&self) -> CorrectionStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CorrectionStats
impl Debug for CorrectionStats
Auto Trait Implementations§
impl Freeze for CorrectionStats
impl RefUnwindSafe for CorrectionStats
impl Send for CorrectionStats
impl Sync for CorrectionStats
impl Unpin for CorrectionStats
impl UnwindSafe for CorrectionStats
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