pub struct UserUpStat {
pub archive: UserUpStatArchive,
pub article: UserUpStatArticle,
pub likes: u64,
}Expand description
/x/space/upstat 返回的创作者内容统计。
Fields§
§archive: UserUpStatArchive投稿视频播放摘要。
article: UserUpStatArticle专栏阅读摘要。
likes: u64该用户收到的总点赞数。
Trait Implementations§
Source§impl Clone for UserUpStat
impl Clone for UserUpStat
Source§fn clone(&self) -> UserUpStat
fn clone(&self) -> UserUpStat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for UserUpStat
Source§impl Debug for UserUpStat
impl Debug for UserUpStat
Source§impl<'de> Deserialize<'de> for UserUpStat
impl<'de> Deserialize<'de> for UserUpStat
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
impl Eq for UserUpStat
Source§impl PartialEq for UserUpStat
impl PartialEq for UserUpStat
Source§fn eq(&self, other: &UserUpStat) -> bool
fn eq(&self, other: &UserUpStat) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UserUpStat
impl Serialize for UserUpStat
impl StructuralPartialEq for UserUpStat
Auto Trait Implementations§
impl Freeze for UserUpStat
impl RefUnwindSafe for UserUpStat
impl Send for UserUpStat
impl Sync for UserUpStat
impl Unpin for UserUpStat
impl UnsafeUnpin for UserUpStat
impl UnwindSafe for UserUpStat
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