Struct egs_api::api::UserData[][src]

pub struct UserData {
    pub expires_in: Option<i64>,
    pub expires_at: Option<DateTime<Utc>>,
    pub token_type: Option<String>,
    pub refresh_expires: Option<i64>,
    pub refresh_expires_at: Option<DateTime<Utc>>,
    pub account_id: Option<String>,
    pub client_id: Option<String>,
    pub internal_client: Option<bool>,
    pub client_service: Option<String>,
    pub display_name: Option<String>,
    pub app: Option<String>,
    pub in_app_id: Option<String>,
    pub device_id: Option<String>,
    pub error_message: Option<String>,
    pub error_code: Option<String>,
    // some fields omitted
}

Structure that holds all user data

Needed for login

Fields

expires_in: Option<i64>expires_at: Option<DateTime<Utc>>token_type: Option<String>refresh_expires: Option<i64>refresh_expires_at: Option<DateTime<Utc>>account_id: Option<String>client_id: Option<String>internal_client: Option<bool>client_service: Option<String>display_name: Option<String>app: Option<String>in_app_id: Option<String>device_id: Option<String>error_message: Option<String>error_code: Option<String>

Implementations

impl UserData[src]

pub fn update(&mut self, new: UserData)[src]

Updates only the present values in the existing user data

Trait Implementations

impl Clone for UserData[src]

impl Debug for UserData[src]

impl Default for UserData[src]

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

impl PartialEq<UserData> for UserData[src]

impl Serialize for UserData[src]

impl StructuralPartialEq for UserData[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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.