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