pub enum LongEccToBytesError {
RSConstructorError(RSConstructorError),
RSGenerateParityError(RSGenerateParityError),
}Variants§
RSConstructorError(RSConstructorError)
RSGenerateParityError(RSGenerateParityError)
Trait Implementations§
Source§impl Clone for LongEccToBytesError
impl Clone for LongEccToBytesError
Source§fn clone(&self) -> LongEccToBytesError
fn clone(&self) -> LongEccToBytesError
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 LongEccToBytesError
impl Debug for LongEccToBytesError
Source§impl Display for LongEccToBytesError
impl Display for LongEccToBytesError
Source§impl Error for LongEccToBytesError
impl Error for LongEccToBytesError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<LongEccToBytesError> for LongEccEncodeError
impl From<LongEccToBytesError> for LongEccEncodeError
Source§fn from(source: LongEccToBytesError) -> Self
fn from(source: LongEccToBytesError) -> Self
Converts to this type from the input type.
Source§impl From<RSConstructorError> for LongEccToBytesError
impl From<RSConstructorError> for LongEccToBytesError
Source§fn from(source: RSConstructorError) -> Self
fn from(source: RSConstructorError) -> Self
Converts to this type from the input type.
Source§impl From<RSGenerateParityError> for LongEccToBytesError
impl From<RSGenerateParityError> for LongEccToBytesError
Source§fn from(source: RSGenerateParityError) -> Self
fn from(source: RSGenerateParityError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LongEccToBytesError
impl PartialEq for LongEccToBytesError
impl Eq for LongEccToBytesError
impl StructuralPartialEq for LongEccToBytesError
Auto Trait Implementations§
impl Freeze for LongEccToBytesError
impl RefUnwindSafe for LongEccToBytesError
impl Send for LongEccToBytesError
impl Sync for LongEccToBytesError
impl Unpin for LongEccToBytesError
impl UnwindSafe for LongEccToBytesError
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