Enum matrix_sdk::authentication::qrcode::QrCodeMode
source · pub enum QrCodeMode {
Login = 3,
Reciprocate = 4,
}
Available on crate feature
experimental-oidc
and crate feature e2e-encryption
and non-WebAssembly only.Expand description
The mode of the QR code login.
The QR code login mechanism supports both, the new device, as well as the existing device to display the QR code.
The different modes have an explicit one-byte identifier which gets added to the QR code data.
Variants§
Login = 3
Enum variant for the case where the new device is displaying the QR code.
Reciprocate = 4
Enum variant for the case where the existing device is displaying the QR code.
Trait Implementations§
source§impl Clone for QrCodeMode
impl Clone for QrCodeMode
source§fn clone(&self) -> QrCodeMode
fn clone(&self) -> QrCodeMode
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 QrCodeMode
impl Debug for QrCodeMode
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 QrCodeMode
impl PartialEq for QrCodeMode
source§fn eq(&self, other: &QrCodeMode) -> bool
fn eq(&self, other: &QrCodeMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<u8> for QrCodeMode
impl TryFrom<u8> for QrCodeMode
§type Error = LoginQrCodeDecodeError
type Error = LoginQrCodeDecodeError
The type returned in the event of a conversion error.
source§fn try_from(value: u8) -> Result<QrCodeMode, <QrCodeMode as TryFrom<u8>>::Error>
fn try_from(value: u8) -> Result<QrCodeMode, <QrCodeMode as TryFrom<u8>>::Error>
Performs the conversion.
impl Eq for QrCodeMode
impl StructuralPartialEq for QrCodeMode
Auto Trait Implementations§
impl Freeze for QrCodeMode
impl RefUnwindSafe for QrCodeMode
impl Send for QrCodeMode
impl Sync for QrCodeMode
impl Unpin for QrCodeMode
impl UnwindSafe for QrCodeMode
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