[][src]Struct slack_chat_api::UserProfile

pub struct UserProfile {
    pub avatar_hash: String,
    pub display_name: String,
    pub display_name_normalized: String,
    pub email: String,
    pub fields: HashMap<String, UserProfileFields>,
    pub first_name: String,
    pub guest_channels: String,
    pub image_192: String,
    pub image_24: String,
    pub image_32: String,
    pub image_48: String,
    pub image_512: String,
    pub image_72: String,
    pub image_original: String,
    pub last_name: String,
    pub phone: String,
    pub real_name: String,
    pub real_name_normalized: String,
    pub skype: String,
    pub status_emoji: String,
    pub status_text: String,
    pub team: String,
    pub title: String,
}

Fields

avatar_hash: Stringdisplay_name: Stringdisplay_name_normalized: Stringemail: Stringfields: HashMap<String, UserProfileFields>first_name: Stringguest_channels: Stringimage_192: Stringimage_24: Stringimage_32: Stringimage_48: Stringimage_512: Stringimage_72: Stringimage_original: Stringlast_name: Stringphone: Stringreal_name: Stringreal_name_normalized: Stringskype: Stringstatus_emoji: Stringstatus_text: Stringteam: Stringtitle: String

Trait Implementations

impl Clone for UserProfile[src]

impl Debug for UserProfile[src]

impl Default for UserProfile[src]

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

impl Serialize for UserProfile[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> DynClone for T where
    T: Clone
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,