pub enum AndroidKeyringError {
JniError(Error),
JavaExceptionThrow,
CorruptedData,
}
Variants§
Trait Implementations§
Source§impl Debug for AndroidKeyringError
impl Debug for AndroidKeyringError
Source§impl Display for AndroidKeyringError
impl Display for AndroidKeyringError
Source§impl Error for AndroidKeyringError
impl Error for AndroidKeyringError
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<AndroidKeyringError> for Error
impl From<AndroidKeyringError> for Error
Source§fn from(value: AndroidKeyringError) -> Self
fn from(value: AndroidKeyringError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AndroidKeyringError
impl RefUnwindSafe for AndroidKeyringError
impl Send for AndroidKeyringError
impl Sync for AndroidKeyringError
impl Unpin for AndroidKeyringError
impl UnwindSafe for AndroidKeyringError
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