pub enum EncryptError {
NoRecipients,
InvalidRecipient {
recipient: String,
reason: String,
},
Failed(String),
Io(Error),
}Variants§
Implementations§
Source§impl EncryptError
impl EncryptError
pub fn is_user_correctable(&self) -> bool
pub fn invalid_recipient(&self) -> Option<&str>
Trait Implementations§
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()
Source§impl From<EncryptError> for Error
impl From<EncryptError> for Error
Source§fn from(source: EncryptError) -> Self
fn from(source: EncryptError) -> Self
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 UnsafeUnpin 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