pub struct RsDecodeStats {
pub total_errors: usize,
pub error_capacity: usize,
pub max_block_errors: usize,
pub num_blocks: usize,
}Expand description
Statistics from RS decoding across all blocks.
Fields§
§total_errors: usizeTotal symbol errors corrected across all blocks.
error_capacity: usizeMaximum correctable errors per block (T_MAX × num_blocks).
max_block_errors: usizeMaximum errors found in any single block.
num_blocks: usizeNumber of RS blocks decoded.
Trait Implementations§
Source§impl Clone for RsDecodeStats
impl Clone for RsDecodeStats
Source§fn clone(&self) -> RsDecodeStats
fn clone(&self) -> RsDecodeStats
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 RsDecodeStats
impl Debug for RsDecodeStats
Source§impl Default for RsDecodeStats
impl Default for RsDecodeStats
Source§fn default() -> RsDecodeStats
fn default() -> RsDecodeStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RsDecodeStats
impl RefUnwindSafe for RsDecodeStats
impl Send for RsDecodeStats
impl Sync for RsDecodeStats
impl Unpin for RsDecodeStats
impl UnsafeUnpin for RsDecodeStats
impl UnwindSafe for RsDecodeStats
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