Enum matrix_sdk::encryption::verification::ScanError
[−]pub enum ScanError {
Store(CryptoStoreError),
KeyMismatch {
expected: String,
found: String,
},
MissingCrossSigningIdentity(OwnedUserId),
MissingDeviceKeys(OwnedUserId, OwnedDeviceId),
FlowIdMismatch {
expected: String,
found: String,
},
}Available on crate features
e2e-encryption and 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
Fields
expected: StringThe expected verification flow id.
found: StringThe verification flow id that we instead got.
The ID uniquely identifying this verification flow didn’t match to the one that has been scanned.
Trait Implementations
impl Error for ScanError
impl Error for ScanError
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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl From<CryptoStoreError> for ScanError
impl From<CryptoStoreError> for ScanError
fn from(source: CryptoStoreError) -> ScanError
fn from(source: CryptoStoreError) -> ScanError
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for ScanError
impl Send for ScanError
impl Sync for ScanError
impl Unpin for ScanError
impl !UnwindSafe for ScanError
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