Enum matrix_sdk::encryption::identities::ManualVerifyError
source · [−]pub enum ManualVerifyError {
Http(HttpError),
Signature(SignatureError),
}Available on crate feature
e2e-encryption only.Expand description
Error for the manual verification step, when we manually sign users or devices.
Variants
Http(HttpError)
Error that happens when we try to upload the user or device signature.
Signature(SignatureError)
Error that happens when we try to sign the user or device.
Trait Implementations
sourceimpl Debug for ManualVerifyError
impl Debug for ManualVerifyError
sourceimpl Display for ManualVerifyError
impl Display for ManualVerifyError
sourceimpl Error for ManualVerifyError
impl Error for ManualVerifyError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<HttpError> for ManualVerifyError
impl From<HttpError> for ManualVerifyError
sourceimpl From<SignatureError> for ManualVerifyError
impl From<SignatureError> for ManualVerifyError
sourcefn from(source: SignatureError) -> Self
fn from(source: SignatureError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for ManualVerifyError
impl Send for ManualVerifyError
impl Sync for ManualVerifyError
impl Unpin for ManualVerifyError
impl !UnwindSafe for ManualVerifyError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more