[][src]Struct misskey_api::endpoint::users::stats::UserStats

pub struct UserStats {
    pub notes_count: u64,
    pub replies_count: u64,
    pub renotes_count: u64,
    pub replied_count: u64,
    pub renoted_count: u64,
    pub poll_votes_count: u64,
    pub poll_voted_count: u64,
    pub local_following_count: u64,
    pub remote_following_count: u64,
    pub local_followers_count: u64,
    pub remote_followers_count: u64,
    pub following_count: u64,
    pub followers_count: u64,
    pub sent_reactions_count: u64,
    pub received_reactions_count: u64,
    pub note_favorites_count: u64,
    pub page_likes_count: u64,
    pub page_liked_count: u64,
    pub drive_files_count: u64,
    pub drive_usage: u64,
    pub reversi_count: u64,
}
This is supported on crate feature 12-60-0 only.

Fields

notes_count: u64replies_count: u64renotes_count: u64replied_count: u64renoted_count: u64poll_votes_count: u64poll_voted_count: u64local_following_count: u64remote_following_count: u64local_followers_count: u64remote_followers_count: u64following_count: u64followers_count: u64sent_reactions_count: u64received_reactions_count: u64note_favorites_count: u64page_likes_count: u64page_liked_count: u64drive_files_count: u64drive_usage: u64reversi_count: u64

Trait Implementations

impl Clone for UserStats[src]

impl Debug for UserStats[src]

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

impl Serialize for UserStats[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, 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.