Enum matrix_sdk_crypto::Verification
source · #[non_exhaustive]pub enum Verification {
SasV1(Sas),
QrV1(QrVerification),
}
Expand description
An enum over the different verification types the SDK supports.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
SasV1(Sas)
The m.sas.v1
verification variant.
QrV1(QrVerification)
Available on crate feature
qrcode
only.The m.qr_code.*.v1
verification variant.
Implementations§
source§impl Verification
impl Verification
sourcepub fn sas_v1(self) -> Option<Sas>
pub fn sas_v1(self) -> Option<Sas>
Try to deconstruct this verification enum into a SAS verification.
sourcepub fn qr_v1(self) -> Option<QrVerification>
Available on crate feature qrcode
only.
pub fn qr_v1(self) -> Option<QrVerification>
qrcode
only.Try to deconstruct this verification enum into a QR code verification.
sourcepub fn is_cancelled(&self) -> bool
pub fn is_cancelled(&self) -> bool
Has the verification been cancelled.
sourcepub fn user_id(&self) -> &UserId
pub fn user_id(&self) -> &UserId
Get our own user id that is participating in this verification.
sourcepub fn other_user(&self) -> &UserId
pub fn other_user(&self) -> &UserId
Get the other user id that is participating in this verification.
sourcepub fn is_self_verification(&self) -> bool
pub fn is_self_verification(&self) -> bool
Is this a verification verifying a device that belongs to us.
Trait Implementations§
source§impl Clone for Verification
impl Clone for Verification
source§fn clone(&self) -> Verification
fn clone(&self) -> Verification
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for Verification
impl Debug for Verification
source§impl From<QrVerification> for Verification
Available on crate feature qrcode
only.
impl From<QrVerification> for Verification
Available on crate feature
qrcode
only.source§fn from(qr: QrVerification) -> Self
fn from(qr: QrVerification) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Verification
impl !RefUnwindSafe for Verification
impl Send for Verification
impl Sync for Verification
impl Unpin for Verification
impl !UnwindSafe for Verification
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§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