Struct matrix_sdk::authentication::qrcode::QrCodeData
source · pub struct QrCodeData {
pub public_key: Curve25519PublicKey,
pub rendezvous_url: Url,
pub mode_data: QrCodeModeData,
}
experimental-oidc
and crate feature e2e-encryption
and non-WebAssembly only.Expand description
Data for the QR code login mechanism.
The QrCodeData
can be serialized and encoded as a QR code or it can be
decoded from a QR code.
Fields§
§public_key: Curve25519PublicKey
The ephemeral Curve25519 public key. Can be used to establish a shared secret using the Diffie-Hellman key agreement.
rendezvous_url: Url
The URL of the rendezvous session, can be used to exchange messages with the other device.
mode_data: QrCodeModeData
Mode specific data, may contain the homeserver URL.
Implementations§
source§impl QrCodeData
impl QrCodeData
sourcepub fn from_bytes(bytes: &[u8]) -> Result<QrCodeData, LoginQrCodeDecodeError>
pub fn from_bytes(bytes: &[u8]) -> Result<QrCodeData, LoginQrCodeDecodeError>
Attempt to decode a slice of bytes into a QrCodeData
object.
The slice of bytes would generally be returned by a QR code decoder.
sourcepub fn to_bytes(&self) -> Vec<u8> ⓘ
pub fn to_bytes(&self) -> Vec<u8> ⓘ
Encode the QrCodeData
into a list of bytes.
The list of bytes can be used by a QR code generator to create an image containing a QR code.
sourcepub fn from_base64(data: &str) -> Result<QrCodeData, LoginQrCodeDecodeError>
pub fn from_base64(data: &str) -> Result<QrCodeData, LoginQrCodeDecodeError>
Attempt to decode a base64 encoded string into a QrCodeData
object.
sourcepub fn to_base64(&self) -> String
pub fn to_base64(&self) -> String
Encode the QrCodeData
into a list of bytes.
The list of bytes can be used by a QR code generator to create an image containing a QR code.
sourcepub fn mode(&self) -> QrCodeMode
pub fn mode(&self) -> QrCodeMode
Get the mode of this QrCodeData
instance.
Trait Implementations§
source§impl Clone for QrCodeData
impl Clone for QrCodeData
source§fn clone(&self) -> QrCodeData
fn clone(&self) -> QrCodeData
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for QrCodeData
impl Debug for QrCodeData
source§impl PartialEq for QrCodeData
impl PartialEq for QrCodeData
source§fn eq(&self, other: &QrCodeData) -> bool
fn eq(&self, other: &QrCodeData) -> bool
self
and other
values to be equal, and is used
by ==
.impl Eq for QrCodeData
impl StructuralPartialEq for QrCodeData
Auto Trait Implementations§
impl Freeze for QrCodeData
impl RefUnwindSafe for QrCodeData
impl Send for QrCodeData
impl Sync for QrCodeData
impl Unpin for QrCodeData
impl UnwindSafe for QrCodeData
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
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)
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
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
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>
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>
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>
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