pub enum EncryptError {
EncryptedIdentities(DecryptError),
IncompatibleRecipients {
l_labels: HashSet<String>,
r_labels: HashSet<String>,
},
InvalidRecipientLabels(HashSet<String>),
Io(Error),
MissingRecipients,
MixedRecipientAndPassphrase,
}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.
MissingRecipients
The encryptor was not given any recipients.
MixedRecipientAndPassphrase
scrypt::Recipient was mixed with other recipient types.
Trait Implementations§
Source§impl Clone for EncryptError
impl Clone for EncryptError
Source§fn clone(&self) -> EncryptError
fn clone(&self) -> EncryptError
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 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()
Source§impl From<Error> for EncryptError
impl From<Error> for EncryptError
Source§fn from(e: Error) -> EncryptError
fn from(e: Error) -> EncryptError
Converts to this type from the input type.
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