[][src]Enum tbot::types::passport::element::Kind

pub enum Kind {
    PersonalDetails(String),
    Passport {
        data: String,
        front_side: File,
        selfie: File,
        translation: Vec<File>,
    },
    DriverLicense {
        data: String,
        front_side: File,
        reverse_side: File,
        selfie: File,
        translation: Vec<File>,
    },
    IdentityCard {
        data: String,
        front_side: File,
        reverse_side: File,
        selfie: File,
        translation: Vec<File>,
    },
    InternalPassport {
        data: String,
        front_side: File,
        selfie: File,
        translation: Vec<File>,
    },
    Address(String),
    UtilityBill {
        files: Vec<File>,
        translation: Vec<File>,
    },
    BankStatement {
        files: Vec<File>,
        translation: Vec<File>,
    },
    RentalAgreement {
        files: Vec<File>,
        translation: Vec<File>,
    },
    PassportRegistration {
        files: Vec<File>,
        translation: Vec<File>,
    },
    TemporaryRegistration {
        files: Vec<File>,
        translation: Vec<File>,
    },
    PhoneNumber(String),
    Email(String),
}

Represents different kinds of Element.

Variants

PersonalDetails(String)

THe user's personal details.

Passport

The user's passport.

Fields of Passport

data: String

Data related to the passport.

front_side: File

The front size of the passport.

selfie: File

The user's selfie with the passport.

translation: Vec<File>

Translated versions of the passport.

DriverLicense

The user's driver license.

Fields of DriverLicense

data: String

Data related to the license.

front_side: File

The front side of the license.

reverse_side: File

The reverse side of the license.

selfie: File

The user's selfie with the license.

translation: Vec<File>

Translated versions of the license.

IdentityCard

The user's identity card.

Fields of IdentityCard

data: String

Data related to the identity card.

front_side: File

The front side of the identity card.

reverse_side: File

The reverse side of the identity card.

selfie: File

The user's selfie with the license.

translation: Vec<File>

Translated versions of the identity card.

InternalPassport

The user's internal passport.

Fields of InternalPassport

data: String

Data related to the passport.

front_side: File

The front side of the passport.

selfie: File

The user's selfie with the passport.

translation: Vec<File>

Translated versions of the passport.

Address(String)

The user's address.

UtilityBill

The user's utility bill.

Fields of UtilityBill

files: Vec<File>

Photos of the bill.

translation: Vec<File>

Translated versions of the bill.

BankStatement

The user's bank statement.

Fields of BankStatement

files: Vec<File>

Photos of the statement.

translation: Vec<File>

Translated versions of the statement.

RentalAgreement

The user's rental agreement.

Fields of RentalAgreement

files: Vec<File>

Photos of the agreement.

translation: Vec<File>

Translated versions of the agreement.

PassportRegistration

The user's passport registration.

Fields of PassportRegistration

files: Vec<File>

Photos of the registration.

translation: Vec<File>

Translated versions of the registration.

TemporaryRegistration

The user's temporary registration.

Fields of TemporaryRegistration

files: Vec<File>

Photos of the registration.

translation: Vec<File>

Translated versions of the registration.

PhoneNumber(String)

The user's phone number.

Email(String)

The user's email.

Methods

impl Kind[src]

pub fn is_personal_details(&self) -> bool[src]

Checks if self is PersonalDetails.

pub fn is_passport(&self) -> bool[src]

Checks if self is Passport.

pub fn is_driver_license(&self) -> bool[src]

Checks if self is DriverLicense.

pub fn is_identity_card(&self) -> bool[src]

Checks if self is IdentityCard.

pub fn is_internal_passport(&self) -> bool[src]

Checks if self is InternalPassport.

pub fn is_address(&self) -> bool[src]

Checks if self is Address.

pub fn is_utility_bill(&self) -> bool[src]

Checks if self is UtilityBill.

pub fn is_bank_statement(&self) -> bool[src]

Checks if self is BankStatement.

pub fn is_rental_agreement(&self) -> bool[src]

Checks if self is RentalAgreement.

pub fn is_passport_registration(&self) -> bool[src]

Checks if self is PassportRegistration.

pub fn is_temporary_registration(&self) -> bool[src]

Checks if self is TemporaryRegistration.

pub fn is_phone_number(&self) -> bool[src]

Checks if self is PhoneNumber.

pub fn is_email(&self) -> bool[src]

Checks if self is Email.

Trait Implementations

impl Clone for Kind[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Eq for Kind[src]

impl PartialEq<Kind> for Kind[src]

impl Hash for Kind[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Kind[src]

Auto Trait Implementations

impl Sync for Kind

impl Unpin for Kind

impl Send for Kind

impl UnwindSafe for Kind

impl RefUnwindSafe for Kind

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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

impl<T> Erased for T

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