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