pub enum XEdDSAError {
Rng(RngError),
InvalidArgument,
VerificationFailed,
}Variants§
Trait Implementations§
Source§impl Debug for XEdDSAError
impl Debug for XEdDSAError
Source§impl Display for XEdDSAError
impl Display for XEdDSAError
Source§impl Error for XEdDSAError
impl Error for XEdDSAError
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<RngError> for XEdDSAError
impl From<RngError> for XEdDSAError
Source§impl From<XEdDSAError> for KeyBundleError
impl From<XEdDSAError> for KeyBundleError
Source§fn from(source: XEdDSAError) -> Self
fn from(source: XEdDSAError) -> Self
Converts to this type from the input type.
Source§impl From<XEdDSAError> for KeyManagerError
impl From<XEdDSAError> for KeyManagerError
Source§fn from(source: XEdDSAError) -> Self
fn from(source: XEdDSAError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for XEdDSAError
impl RefUnwindSafe for XEdDSAError
impl Send for XEdDSAError
impl Sync for XEdDSAError
impl Unpin for XEdDSAError
impl UnwindSafe for XEdDSAError
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