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