[][src]Enum grammers_tl_types::enums::SecureValueType

pub enum SecureValueType {
    PersonalDetails(SecureValueTypePersonalDetails),
    Passport(SecureValueTypePassport),
    DriverLicense(SecureValueTypeDriverLicense),
    IdentityCard(SecureValueTypeIdentityCard),
    InternalPassport(SecureValueTypeInternalPassport),
    Address(SecureValueTypeAddress),
    UtilityBill(SecureValueTypeUtilityBill),
    BankStatement(SecureValueTypeBankStatement),
    RentalAgreement(SecureValueTypeRentalAgreement),
    PassportRegistration(SecureValueTypePassportRegistration),
    TemporaryRegistration(SecureValueTypeTemporaryRegistration),
    Phone(SecureValueTypePhone),
    Email(SecureValueTypeEmail),
}

Variants

Trait Implementations

impl Clone for SecureValueType[src]

impl Debug for SecureValueType[src]

impl Deserializable for SecureValueType[src]

impl From<SecureValueTypeAddress> for SecureValueType[src]

impl From<SecureValueTypeBankStatement> for SecureValueType[src]

impl From<SecureValueTypeDriverLicense> for SecureValueType[src]

impl From<SecureValueTypeEmail> for SecureValueType[src]

impl From<SecureValueTypeIdentityCard> for SecureValueType[src]

impl From<SecureValueTypeInternalPassport> for SecureValueType[src]

impl From<SecureValueTypePassport> for SecureValueType[src]

impl From<SecureValueTypePassportRegistration> for SecureValueType[src]

impl From<SecureValueTypePersonalDetails> for SecureValueType[src]

impl From<SecureValueTypePhone> for SecureValueType[src]

impl From<SecureValueTypeRentalAgreement> for SecureValueType[src]

impl From<SecureValueTypeTemporaryRegistration> for SecureValueType[src]

impl From<SecureValueTypeUtilityBill> for SecureValueType[src]

impl PartialEq<SecureValueType> for SecureValueType[src]

impl Serializable for SecureValueType[src]

impl StructuralPartialEq for SecureValueType[src]

impl TryFrom<SecureValueType> for SecureValueTypeAddress[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SecureValueType> for SecureValueTypeBankStatement[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SecureValueType> for SecureValueTypeRentalAgreement[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SecureValueType> for SecureValueTypeTemporaryRegistration[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SecureValueType> for SecureValueTypeUtilityBill[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SecureValueType> for SecureValueTypeDriverLicense[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SecureValueType> for SecureValueTypeEmail[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SecureValueType> for SecureValueTypeIdentityCard[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SecureValueType> for SecureValueTypeInternalPassport[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SecureValueType> for SecureValueTypePassport[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SecureValueType> for SecureValueTypePassportRegistration[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SecureValueType> for SecureValueTypePersonalDetails[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

impl TryFrom<SecureValueType> for SecureValueTypePhone[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.