pub enum RSConstructorError {
ParityTooHigh,
}Variants§
ParityTooHigh
Trait Implementations§
Source§impl Clone for RSConstructorError
impl Clone for RSConstructorError
Source§fn clone(&self) -> RSConstructorError
fn clone(&self) -> RSConstructorError
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 RSConstructorError
impl Debug for RSConstructorError
Source§impl Display for RSConstructorError
impl Display for RSConstructorError
Source§impl Error for RSConstructorError
impl Error for RSConstructorError
1.30.0 · 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<RSConstructorError> for DecodeError
impl From<RSConstructorError> for DecodeError
Source§fn from(source: RSConstructorError) -> Self
fn from(source: RSConstructorError) -> Self
Converts to this type from the input type.
Source§impl From<RSConstructorError> for EncodeError
impl From<RSConstructorError> for EncodeError
Source§fn from(source: RSConstructorError) -> Self
fn from(source: RSConstructorError) -> Self
Converts to this type from the input type.
Source§impl From<RSConstructorError> for LongEccEncodeError
impl From<RSConstructorError> for LongEccEncodeError
Source§fn from(source: RSConstructorError) -> Self
fn from(source: RSConstructorError) -> 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<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 Hash for RSConstructorError
impl Hash for RSConstructorError
Source§impl Ord for RSConstructorError
impl Ord for RSConstructorError
Source§fn cmp(&self, other: &RSConstructorError) -> Ordering
fn cmp(&self, other: &RSConstructorError) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RSConstructorError
impl PartialEq for RSConstructorError
Source§impl PartialOrd for RSConstructorError
impl PartialOrd for RSConstructorError
impl Copy for RSConstructorError
impl Eq for RSConstructorError
impl StructuralPartialEq for RSConstructorError
Auto Trait Implementations§
impl Freeze for RSConstructorError
impl RefUnwindSafe for RSConstructorError
impl Send for RSConstructorError
impl Sync for RSConstructorError
impl Unpin for RSConstructorError
impl UnwindSafe for RSConstructorError
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