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