Struct hipchat_client::user::UserDetail
[−]
[src]
pub struct UserDetail { pub id: u64, pub xmpp_jid: Option<String>, pub name: String, pub mention_name: String, pub email: Option<String>, pub title: Option<String>, pub timezone: Option<String>, pub photo_url: Option<String>, pub presence: Option<UserPresence>, pub is_deleted: Option<bool>, pub is_guest: Option<bool>, pub is_group_admin: Option<bool>, pub created: Option<String>, pub last_active: Option<String>, pub links: UserDetailLinks, }
Fields
id: u64
xmpp_jid: Option<String>
name: String
mention_name: String
email: Option<String>
title: Option<String>
timezone: Option<String>
photo_url: Option<String>
presence: Option<UserPresence>
is_deleted: Option<bool>
is_guest: Option<bool>
is_group_admin: Option<bool>
created: Option<String>
last_active: Option<String>
links: UserDetailLinks
Trait Implementations
impl Debug for UserDetail
[src]
impl Clone for UserDetail
[src]
fn clone(&self) -> UserDetail
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Hash for UserDetail
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Eq for UserDetail
[src]
impl PartialEq for UserDetail
[src]
fn eq(&self, __arg_0: &UserDetail) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &UserDetail) -> bool
This method tests for !=
.