pub struct UserProfile {Show 23 fields
pub avatar_hash: Option<String>,
pub display_name: Option<String>,
pub display_name_normalized: Option<String>,
pub email: Option<String>,
pub fields: Option<HashMap<String, UserProfileFields>>,
pub first_name: Option<String>,
pub guest_channels: Option<String>,
pub image_192: Option<String>,
pub image_24: Option<String>,
pub image_32: Option<String>,
pub image_48: Option<String>,
pub image_512: Option<String>,
pub image_72: Option<String>,
pub image_original: Option<String>,
pub last_name: Option<String>,
pub phone: Option<String>,
pub real_name: Option<String>,
pub real_name_normalized: Option<String>,
pub skype: Option<String>,
pub status_emoji: Option<String>,
pub status_text: Option<String>,
pub team: Option<String>,
pub title: Option<String>,
}Fields§
§avatar_hash: Option<String>§display_name: Option<String>§display_name_normalized: Option<String>§email: Option<String>§fields: Option<HashMap<String, UserProfileFields>>§first_name: Option<String>§guest_channels: Option<String>§image_192: Option<String>§image_24: Option<String>§image_32: Option<String>§image_48: Option<String>§image_512: Option<String>§image_72: Option<String>§image_original: Option<String>§last_name: Option<String>§phone: Option<String>§real_name: Option<String>§real_name_normalized: Option<String>§skype: Option<String>§status_emoji: Option<String>§status_text: Option<String>§team: Option<String>§title: Option<String>Trait Implementations§
Source§impl Clone for UserProfile
impl Clone for UserProfile
Source§fn clone(&self) -> UserProfile
fn clone(&self) -> UserProfile
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UserProfile
impl Debug for UserProfile
Source§impl<'de> Deserialize<'de> for UserProfile
impl<'de> Deserialize<'de> for UserProfile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UserProfile
impl RefUnwindSafe for UserProfile
impl Send for UserProfile
impl Sync for UserProfile
impl Unpin for UserProfile
impl UnwindSafe for UserProfile
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more