pub struct HomeAccount {
pub name: String,
pub score: i64,
pub unread_notification_count: i64,
pub unread_message_count: i64,
pub is_trusted: bool,
pub created_at: String,
pub follower_count: i64,
pub following_count: i64,
pub profile_url: String,
}Fields§
§name: String§score: i64§unread_notification_count: i64§unread_message_count: i64§is_trusted: bool§created_at: String§follower_count: i64§following_count: i64§profile_url: StringTrait Implementations§
Source§impl Clone for HomeAccount
impl Clone for HomeAccount
Source§fn clone(&self) -> HomeAccount
fn clone(&self) -> HomeAccount
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 HomeAccount
impl Debug for HomeAccount
Source§impl Default for HomeAccount
impl Default for HomeAccount
Source§fn default() -> HomeAccount
fn default() -> HomeAccount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HomeAccount
impl<'de> Deserialize<'de> for HomeAccount
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 HomeAccount
impl RefUnwindSafe for HomeAccount
impl Send for HomeAccount
impl Sync for HomeAccount
impl Unpin for HomeAccount
impl UnsafeUnpin for HomeAccount
impl UnwindSafe for HomeAccount
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