pub enum LdpcError {
WrongSize {
expected: usize,
provided: usize,
},
DecodingFailed,
}Expand description
Errors from LDPC operations.
Variants§
Trait Implementations§
impl Copy for LdpcError
impl Eq for LdpcError
impl StructuralPartialEq for LdpcError
Auto Trait Implementations§
impl Freeze for LdpcError
impl RefUnwindSafe for LdpcError
impl Send for LdpcError
impl Sync for LdpcError
impl Unpin for LdpcError
impl UnsafeUnpin for LdpcError
impl UnwindSafe for LdpcError
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