pub enum LongEccConstructorError {
InsufficientHeaderBytes(u8),
RSDecodeError(RSDecodeError),
TryFromIntError(TryFromIntError),
TryFromSliceError(TryFromSliceError),
}Variants§
InsufficientHeaderBytes(u8)
RSDecodeError(RSDecodeError)
TryFromIntError(TryFromIntError)
TryFromSliceError(TryFromSliceError)
Trait Implementations§
Source§impl Clone for LongEccConstructorError
impl Clone for LongEccConstructorError
Source§fn clone(&self) -> LongEccConstructorError
fn clone(&self) -> LongEccConstructorError
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 LongEccConstructorError
impl Debug for LongEccConstructorError
Source§impl Display for LongEccConstructorError
impl Display for LongEccConstructorError
Source§impl Error for LongEccConstructorError
impl Error for LongEccConstructorError
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<LongEccConstructorError> for LongEccDecodeError
impl From<LongEccConstructorError> for LongEccDecodeError
Source§fn from(source: LongEccConstructorError) -> Self
fn from(source: LongEccConstructorError) -> Self
Converts to this type from the input type.
Source§impl From<RSDecodeError> for LongEccConstructorError
impl From<RSDecodeError> for LongEccConstructorError
Source§fn from(source: RSDecodeError) -> Self
fn from(source: RSDecodeError) -> Self
Converts to this type from the input type.
Source§impl From<TryFromIntError> for LongEccConstructorError
impl From<TryFromIntError> for LongEccConstructorError
Source§fn from(source: TryFromIntError) -> Self
fn from(source: TryFromIntError) -> Self
Converts to this type from the input type.
Source§impl From<TryFromSliceError> for LongEccConstructorError
impl From<TryFromSliceError> for LongEccConstructorError
Source§fn from(source: TryFromSliceError) -> Self
fn from(source: TryFromSliceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LongEccConstructorError
impl RefUnwindSafe for LongEccConstructorError
impl Send for LongEccConstructorError
impl Sync for LongEccConstructorError
impl Unpin for LongEccConstructorError
impl UnwindSafe for LongEccConstructorError
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