#[non_exhaustive]pub enum Error {
AgeFormatError(DecError),
Bip39Error(Error),
Bip44Error(BadPurpose),
BufferSize {
name: &'static str,
needs: usize,
has: usize,
},
CipherError {
alg: &'static str,
},
SignatureError {
alg: &'static str,
},
ConvertError {
from: &'static str,
to: &'static str,
},
PrivateKeyError,
InvalidArgumentError {
alg: &'static str,
expected: &'static str,
},
Slip10Error(SegmentHardeningError),
SystemError {
call: &'static str,
raw_os_error: Option<i32>,
},
}Expand description
Error type of crypto.rs
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AgeFormatError(DecError)
Available on crate feature
age only.Age Format Error
Bip39Error(Error)
Available on crate feature
bip39 only.Bip39 Error
Bip44Error(BadPurpose)
Available on crate feature
bip44 only.Bip44 Bad Purpose Segment
BufferSize
Buffer Error
CipherError
Cipher Error
SignatureError
Signature Error
ConvertError
Conversion Error
PrivateKeyError
Private Key Error
InvalidArgumentError
InvalidArgumentError
Slip10Error(SegmentHardeningError)
Available on crate feature
slip10 only.Slip10 Segment Hardening Error
SystemError
System Error
Trait Implementations§
Source§impl Error for Error
Available on crate feature std only.
impl Error for Error
Available on crate feature
std only.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<BadPurpose> for Error
Available on crate feature bip44 only.
impl From<BadPurpose> for Error
Available on crate feature
bip44 only.Source§fn from(inner: BadPurpose) -> Self
fn from(inner: BadPurpose) -> Self
Converts to this type from the input type.
Source§impl From<IncorrectWorkFactor> for Error
Available on crate feature age only.
impl From<IncorrectWorkFactor> for Error
Available on crate feature
age only.Source§fn from(_: IncorrectWorkFactor) -> Self
fn from(_: IncorrectWorkFactor) -> Self
Converts to this type from the input type.
Source§impl From<SegmentHardeningError> for Error
Available on crate feature slip10 only.
impl From<SegmentHardeningError> for Error
Available on crate feature
slip10 only.Source§fn from(inner: SegmentHardeningError) -> Self
fn from(inner: SegmentHardeningError) -> Self
Converts to this type from the input type.
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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