[][src]Struct grammers_tl_types::types::account::Password

pub struct Password {
    pub has_recovery: bool,
    pub has_secure_values: bool,
    pub has_password: bool,
    pub current_algo: Option<PasswordKdfAlgo>,
    pub srp_b: Option<Vec<u8>>,
    pub srp_id: Option<i64>,
    pub hint: Option<String>,
    pub email_unconfirmed_pattern: Option<String>,
    pub new_algo: PasswordKdfAlgo,
    pub new_secure_algo: SecurePasswordKdfAlgo,
    pub secure_random: Vec<u8>,
}

Fields

has_recovery: boolhas_secure_values: boolhas_password: boolcurrent_algo: Option<PasswordKdfAlgo>srp_b: Option<Vec<u8>>srp_id: Option<i64>hint: Option<String>email_unconfirmed_pattern: Option<String>new_algo: PasswordKdfAlgonew_secure_algo: SecurePasswordKdfAlgosecure_random: Vec<u8>

Trait Implementations

impl Clone for Password[src]

impl Debug for Password[src]

impl Deserializable for Password[src]

impl From<Password> for Password[src]

impl From<Password> for Password[src]

impl Identifiable for Password[src]

impl PartialEq<Password> for Password[src]

impl Serializable for Password[src]

impl StructuralPartialEq for Password[src]

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.