[][src]Struct grammers_tl_types::functions::auth::SignIn

pub struct SignIn {
    pub phone_number: String,
    pub phone_code_hash: String,
    pub phone_code: String,
}

Fields

phone_number: Stringphone_code_hash: Stringphone_code: String

Trait Implementations

impl Clone for SignIn[src]

impl Debug for SignIn[src]

impl Identifiable for SignIn[src]

impl PartialEq<SignIn> for SignIn[src]

impl RemoteCall for SignIn[src]

type Return = Authorization

The type of the "return" value coming from the other end of the connection. Read more

impl Serializable for SignIn[src]

impl StructuralPartialEq for SignIn[src]

Auto Trait Implementations

impl RefUnwindSafe for SignIn

impl Send for SignIn

impl Sync for SignIn

impl Unpin for SignIn

impl UnwindSafe for SignIn

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.