pub enum RSState {
Ok,
Corrected(i32),
Uncorrectable(String),
NotPerformed,
}Expand description
Disposition of the RS process
Variants§
Ok
RS was performed and no errors were found
Corrected(i32)
RS was performed and the provided number of errors were successfully correct.
Uncorrectable(String)
RS was performed but the RS codeblock was not correctable, e.g., there were more errors than could be corrected.
NotPerformed
Trait Implementations§
source§impl PartialEq for RSState
impl PartialEq for RSState
impl StructuralPartialEq for RSState
Auto Trait Implementations§
impl RefUnwindSafe for RSState
impl Send for RSState
impl Sync for RSState
impl Unpin for RSState
impl UnwindSafe for RSState
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