pub enum EncryptError {
EncryptedIdentities(DecryptError),
IncompatibleRecipients {
l_labels: HashSet<String>,
r_labels: HashSet<String>,
},
InvalidRecipientLabels(HashSet<String>),
Io(Error),
MissingPlugin {
binary_name: String,
},
MissingRecipients,
MixedRecipientAndPassphrase,
Plugin(Vec<PluginError>),
}Expand description
The various errors that can be returned during the encryption process.
Variants§
EncryptedIdentities(DecryptError)
An error occured while decrypting passphrase-encrypted identities.
IncompatibleRecipients
The encryptor was given recipients that declare themselves incompatible.
Fields
InvalidRecipientLabels(HashSet<String>)
One or more of the labels from the first recipient provided to the encryptor are invalid.
Labels must be valid age “arbitrary string“s (1*VCHAR in ABNF).
Io(Error)
An I/O error occurred during encryption.
MissingPlugin
Available on crate feature
plugin only.A required plugin could not be found.
MissingRecipients
The encryptor was not given any recipients.
MixedRecipientAndPassphrase
scrypt::Recipient was mixed with other recipient types.
Plugin(Vec<PluginError>)
Available on crate feature
plugin only.Errors from a plugin.
Trait Implementations§
Source§impl Clone for EncryptError
impl Clone for EncryptError
Source§impl Debug for EncryptError
impl Debug for EncryptError
Source§impl Display for EncryptError
impl Display for EncryptError
Source§impl Error for EncryptError
impl Error for EncryptError
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()
Auto Trait Implementations§
impl Freeze for EncryptError
impl !RefUnwindSafe for EncryptError
impl Send for EncryptError
impl Sync for EncryptError
impl Unpin for EncryptError
impl !UnwindSafe for EncryptError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more