Enum matrix_sdk_crypto::ScanError
source · pub enum ScanError {
Store(CryptoStoreError),
KeyMismatch {
expected: String,
found: String,
},
MissingCrossSigningIdentity(OwnedUserId),
MissingDeviceKeys(OwnedUserId, OwnedDeviceId),
FlowIdMismatch {
expected: String,
found: String,
},
}
Available on crate feature
qrcode
only.Expand description
An error for the different failure modes that can happen during the validation of a scanned QR code.
Variants§
Store(CryptoStoreError)
An IO error inside the crypto store happened during the validation of the QR code scan.
KeyMismatch
A key mismatch happened during the validation of the QR code scan.
MissingCrossSigningIdentity(OwnedUserId)
One of the users that is participating in this verification doesn’t have a valid cross signing identity.
MissingDeviceKeys(OwnedUserId, OwnedDeviceId)
The device of the user that is participating in this verification doesn’t have a valid device key.
FlowIdMismatch
The ID uniquely identifying this verification flow didn’t match to the one that has been scanned.
Trait Implementations§
source§impl Error for ScanError
impl Error for ScanError
source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<CryptoStoreError> for ScanError
impl From<CryptoStoreError> for ScanError
source§fn from(source: CryptoStoreError) -> Self
fn from(source: CryptoStoreError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ScanError
impl !RefUnwindSafe for ScanError
impl Send for ScanError
impl Sync for ScanError
impl Unpin for ScanError
impl !UnwindSafe for ScanError
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
§impl<T> CompatExt for T
impl<T> CompatExt for T
source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more