[][src]Struct rtdlib::types::AuthorizationStateClosed

pub struct AuthorizationStateClosed { /* fields omitted */ }

TDLib client is in its final state. All databases are closed and all resources are released. No other updates will be received after this. All queries will be responded to with error code 500. To continue working, one should create a new instance of the TDLib client

Implementations

impl AuthorizationStateClosed[src]

pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self>[src]

pub fn builder() -> RTDAuthorizationStateClosedBuilder[src]

Trait Implementations

impl AsRef<AuthorizationStateClosed> for AuthorizationStateClosed[src]

impl Clone for AuthorizationStateClosed[src]

impl Debug for AuthorizationStateClosed[src]

impl Default for AuthorizationStateClosed[src]

impl<'de> Deserialize<'de> for AuthorizationStateClosed[src]

impl RObject for AuthorizationStateClosed[src]

impl Serialize for AuthorizationStateClosed[src]

impl TDAuthorizationState for AuthorizationStateClosed[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.