Struct kuon::User[][src]

pub struct User {
    pub id: u64,
    pub id_str: String,
    pub name: String,
    pub screen_name: String,
    pub location: Option<String>,
    pub description: Option<String>,
    pub url: Option<String>,
    pub entities: UserEntities,
    pub protected: bool,
    pub followers_count: u64,
    pub friends_count: u64,
    pub listed_count: u64,
    pub created_at: String,
    pub favourites_count: u64,
    pub utc_offset: Option<Value>,
    pub time_zone: Option<Value>,
    pub geo_enabled: Option<Value>,
    pub verified: bool,
    pub statuses_count: u64,
    pub lang: Option<Value>,
    pub contributors_enabled: Option<Value>,
    pub is_translator: Option<Value>,
    pub is_translation_enabled: Option<Value>,
    pub profile_background_color: Option<Value>,
    pub profile_background_image_url: Option<Value>,
    pub profile_background_image_url_https: Option<Value>,
    pub profile_background_tile: Option<Value>,
    pub profile_image_url: Option<Value>,
    pub profile_image_url_https: String,
    pub profile_banner_url: Option<String>,
    pub profile_link_color: Option<Value>,
    pub profile_sidebar_border_color: Option<Value>,
    pub profile_sidebar_fill_color: Option<Value>,
    pub profile_text_color: Option<Value>,
    pub profile_use_background_image: Option<Value>,
    pub has_extended_profile: Option<Value>,
    pub default_profile: bool,
    pub default_profile_image: bool,
    pub following: Option<Value>,
    pub follow_request_sent: Option<Value>,
    pub notifications: Option<Value>,
    pub translator_type: Option<Value>,
}

Fields

id: u64id_str: Stringname: Stringscreen_name: Stringlocation: Option<String>description: Option<String>url: Option<String>entities: UserEntitiesprotected: boolfollowers_count: u64friends_count: u64listed_count: u64created_at: Stringfavourites_count: u64utc_offset: Option<Value>time_zone: Option<Value>geo_enabled: Option<Value>verified: boolstatuses_count: u64lang: Option<Value>contributors_enabled: Option<Value>is_translator: Option<Value>is_translation_enabled: Option<Value>profile_background_color: Option<Value>profile_background_image_url: Option<Value>profile_background_image_url_https: Option<Value>profile_background_tile: Option<Value>profile_image_url: Option<Value>profile_image_url_https: Stringprofile_banner_url: Option<String>profile_link_color: Option<Value>profile_sidebar_border_color: Option<Value>profile_sidebar_fill_color: Option<Value>profile_text_color: Option<Value>profile_use_background_image: Option<Value>has_extended_profile: Option<Value>default_profile: booldefault_profile_image: boolfollowing: Option<Value>follow_request_sent: Option<Value>notifications: Option<Value>translator_type: Option<Value>

Trait Implementations

impl Clone for User[src]

impl Debug for User[src]

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

impl Serialize for User[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> Instrument 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.