Enum askar_crypto::ErrorKind
source · [−]pub enum ErrorKind {
Custom,
Encryption,
ExceededBuffer,
Invalid,
InvalidKeyData,
InvalidNonce,
MissingSecretKey,
Unexpected,
Usage,
Unsupported,
}Expand description
The possible kinds of error produced by the crate
Variants
Custom
Custom error, for use external integrations
Encryption
An encryption or decryption operation failed
ExceededBuffer
Out of space in provided buffer
Invalid
The provided input was invalid
InvalidKeyData
The provided key was invalid
InvalidNonce
The provided nonce was invalid (bad length)
MissingSecretKey
A secret key is required but not present
Unexpected
An unexpected error occurred
Usage
The input parameters to the method were incorrect
Unsupported
An unsupported operation was requested
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ErrorKind
impl UnwindSafe for ErrorKind
Blanket Implementations
Mutably borrows from an owned value. Read more