pub struct UpstatResponseData {
pub archive: UpstatArchive,
pub article: UpstatArticle,
pub likes: u64,
}Expand description
UP主状态数响应数据
Fields§
§archive: UpstatArchive视频播放量
article: UpstatArticle专栏阅读量
likes: u64获赞次数
Trait Implementations§
Source§impl Clone for UpstatResponseData
impl Clone for UpstatResponseData
Source§fn clone(&self) -> UpstatResponseData
fn clone(&self) -> UpstatResponseData
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 moreSource§impl Debug for UpstatResponseData
impl Debug for UpstatResponseData
Source§impl<'de> Deserialize<'de> for UpstatResponseData
impl<'de> Deserialize<'de> for UpstatResponseData
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 UpstatResponseData
impl RefUnwindSafe for UpstatResponseData
impl Send for UpstatResponseData
impl Sync for UpstatResponseData
impl Unpin for UpstatResponseData
impl UnsafeUnpin for UpstatResponseData
impl UnwindSafe for UpstatResponseData
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