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