Enum matrix_sdk::authentication::qrcode::QrCodeModeData
source · pub enum QrCodeModeData {
Login,
Reciprocate {
server_name: String,
},
}
Available on crate feature
experimental-oidc
and crate feature e2e-encryption
and non-WebAssembly only.Expand description
The mode-specific data for the QR code.
The QR code login mechanism supports both, the new device, as well as the existing device to display the QR code.
Depending on which device is displaying the QR code, additional data will be attached to the QR code.
Variants§
Login
Enum variant for the case where the new device is displaying the QR code.
Reciprocate
Enum variant for the case where the existing device is displaying the QR code.
Implementations§
source§impl QrCodeModeData
impl QrCodeModeData
sourcepub fn mode(&self) -> QrCodeMode
pub fn mode(&self) -> QrCodeMode
Get the QrCodeMode
which is associated to this QrCodeModeData
instance.
Trait Implementations§
source§impl Clone for QrCodeModeData
impl Clone for QrCodeModeData
source§fn clone(&self) -> QrCodeModeData
fn clone(&self) -> QrCodeModeData
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 QrCodeModeData
impl Debug for QrCodeModeData
source§impl From<&QrCodeModeData> for QrCodeMode
impl From<&QrCodeModeData> for QrCodeMode
source§fn from(value: &QrCodeModeData) -> QrCodeMode
fn from(value: &QrCodeModeData) -> QrCodeMode
Converts to this type from the input type.
source§impl PartialEq for QrCodeModeData
impl PartialEq for QrCodeModeData
source§fn eq(&self, other: &QrCodeModeData) -> bool
fn eq(&self, other: &QrCodeModeData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for QrCodeModeData
impl StructuralPartialEq for QrCodeModeData
Auto Trait Implementations§
impl Freeze for QrCodeModeData
impl RefUnwindSafe for QrCodeModeData
impl Send for QrCodeModeData
impl Sync for QrCodeModeData
impl Unpin for QrCodeModeData
impl UnwindSafe for QrCodeModeData
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
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