Enum deltachat::qr::Qr

source ·
pub enum Qr {
Show 16 variants AskVerifyContact { contact_id: ContactId, fingerprint: Fingerprint, invitenumber: String, authcode: String, }, AskVerifyGroup { grpname: String, grpid: String, contact_id: ContactId, fingerprint: Fingerprint, invitenumber: String, authcode: String, }, FprOk { contact_id: ContactId, }, FprMismatch { contact_id: Option<ContactId>, }, FprWithoutAddr { fingerprint: String, }, Account { domain: String, }, Backup { ticket: Ticket, }, WebrtcInstance { domain: String, instance_pattern: String, }, Addr { contact_id: ContactId, draft: Option<String>, }, Url { url: String, }, Text { text: String, }, WithdrawVerifyContact { contact_id: ContactId, fingerprint: Fingerprint, invitenumber: String, authcode: String, }, WithdrawVerifyGroup { grpname: String, grpid: String, contact_id: ContactId, fingerprint: Fingerprint, invitenumber: String, authcode: String, }, ReviveVerifyContact { contact_id: ContactId, fingerprint: Fingerprint, invitenumber: String, authcode: String, }, ReviveVerifyGroup { grpname: String, grpid: String, contact_id: ContactId, fingerprint: Fingerprint, invitenumber: String, authcode: String, }, Login { address: String, options: LoginOptions, },
}
Expand description

Scanned QR code.

Variants§

§

AskVerifyContact

Fields

§contact_id: ContactId

ID of the contact.

§fingerprint: Fingerprint

Fingerprint of the contact key as scanned from the QR code.

§invitenumber: String

Invite number.

§authcode: String

Authentication code.

Ask the user whether to verify the contact.

If the user agrees, pass this QR code to crate::securejoin::join_securejoin.

§

AskVerifyGroup

Fields

§grpname: String

Group name.

§grpid: String

Group ID.

§contact_id: ContactId

ID of the contact.

§fingerprint: Fingerprint

Fingerprint of the contact key as scanned from the QR code.

§invitenumber: String

Invite number.

§authcode: String

Authentication code.

Ask the user whether to join the group.

§

FprOk

Fields

§contact_id: ContactId

Contact ID.

Contact fingerprint is verified.

Ask the user if they want to start chatting.

§

FprMismatch

Fields

§contact_id: Option<ContactId>

Contact ID.

Scanned fingerprint does not match the last seen fingerprint.

§

FprWithoutAddr

Fields

§fingerprint: String

Key fingerprint.

The scanned QR code contains a fingerprint but no e-mail address.

§

Account

Fields

§domain: String

Server domain name.

Ask the user if they want to create an account on the given domain.

§

Backup

Fields

§ticket: Ticket

Printable version of the provider information.

This is the printable version of a sendme ticket, which contains all the information to connect to and authenticate a backup provider.

The format is somewhat opaque, but sendme can deserialise this.

Provides a backup that can be retrieve.

This contains all the data needed to connect to a device and download a backup from it to configure the receiving device with the same account.

§

WebrtcInstance

Fields

§domain: String

Server domain name.

§instance_pattern: String

URL pattern for video chat rooms.

Ask the user if they want to use the given service for video chats.

§

Addr

Fields

§contact_id: ContactId

Contact ID.

§draft: Option<String>

Draft message.

Contact address is scanned.

Optionally, a draft message could be provided. Ask the user if they want to start chatting.

§

Url

Fields

§url: String

URL.

URL scanned.

Ask the user if they want to open a browser or copy the URL to clipboard.

§

Text

Fields

§text: String

Scanned text.

Text scanned.

Ask the user if they want to copy the text to clipboard.

§

WithdrawVerifyContact

Fields

§contact_id: ContactId

Contact ID.

§fingerprint: Fingerprint

Fingerprint of the contact key as scanned from the QR code.

§invitenumber: String

Invite number.

§authcode: String

Authentication code.

Ask the user if they want to withdraw their own QR code.

§

WithdrawVerifyGroup

Fields

§grpname: String

Group name.

§grpid: String

Group ID.

§contact_id: ContactId

Contact ID.

§fingerprint: Fingerprint

Fingerprint of the contact key as scanned from the QR code.

§invitenumber: String

Invite number.

§authcode: String

Authentication code.

Ask the user if they want to withdraw their own group invite QR code.

§

ReviveVerifyContact

Fields

§contact_id: ContactId

Contact ID.

§fingerprint: Fingerprint

Fingerprint of the contact key as scanned from the QR code.

§invitenumber: String

Invite number.

§authcode: String

Authentication code.

Ask the user if they want to revive their own QR code.

§

ReviveVerifyGroup

Fields

§grpname: String

Group name.

§grpid: String

Group ID.

§contact_id: ContactId

Contact ID.

§fingerprint: Fingerprint

Fingerprint of the contact key as scanned from the QR code.

§invitenumber: String

Invite number.

§authcode: String

Authentication code.

Ask the user if they want to revive their own group invite QR code.

§

Login

Fields

§address: String

Email address.

§options: LoginOptions

Login parameters.

dclogin: scheme parameters.

Ask the user if they want to login with the email address.

Implementations§

source§

impl Qr

source

pub async fn from_address( context: &Context, name: &str, addr: &str, draft: Option<String> ) -> Result<Self>

Creates a new scanned QR code of a contact address.

May contain a message draft.

Trait Implementations§

source§

impl Clone for Qr

source§

fn clone(&self) -> Qr

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Qr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for Qr

source§

fn eq(&self, other: &Qr) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<Qr> for QrInvite

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(qr: Qr) -> Result<Self>

Performs the conversion.
source§

impl Eq for Qr

source§

impl StructuralPartialEq for Qr

Auto Trait Implementations§

§

impl RefUnwindSafe for Qr

§

impl Send for Qr

§

impl Sync for Qr

§

impl Unpin for Qr

§

impl UnwindSafe for Qr

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self, E>

source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more