pub enum RequestVerificationError {
Sdk(Error),
RoomCreation(OwnedUserId),
}Available on crate feature
e2e-encryption only.Expand description
Error when requesting a verification.
Variants
Sdk(Error)
An ordinary error coming from the SDK, i.e. when we fail to send out a HTTP request or if there’s an error with the storage layer.
RoomCreation(OwnedUserId)
Verifying other users requires having a DM open with them, this error signals that we didn’t have a DM and that we failed to create one.
Trait Implementations
sourceimpl Debug for RequestVerificationError
impl Debug for RequestVerificationError
sourceimpl Display for RequestVerificationError
impl Display for RequestVerificationError
sourceimpl Error for RequestVerificationError
impl Error for RequestVerificationError
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()
Auto Trait Implementations
impl !RefUnwindSafe for RequestVerificationError
impl Send for RequestVerificationError
impl Sync for RequestVerificationError
impl Unpin for RequestVerificationError
impl !UnwindSafe for RequestVerificationError
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