pub struct UpStatData {Show 18 fields
pub inc_coin: i64,
pub inc_elec: i64,
pub inc_fav: i64,
pub inc_like: i64,
pub inc_share: i64,
pub incr_click: i64,
pub incr_dm: i64,
pub incr_fans: i64,
pub incr_reply: i64,
pub total_click: i64,
pub total_coin: i64,
pub total_dm: i64,
pub total_elec: i64,
pub total_fans: i64,
pub total_fav: i64,
pub total_like: i64,
pub total_reply: i64,
pub total_share: i64,
}Expand description
UP主视频状态数据
Fields§
§inc_coin: i64新增投币数
inc_elec: i64新增充电数
inc_fav: i64新增收藏数
inc_like: i64新增点赞数
新增分享数
incr_click: i64新增播放数
incr_dm: i64新增弹幕数
incr_fans: i64新增粉丝数
incr_reply: i64新增评论数
total_click: i64总计播放数
total_coin: i64总计投币数
total_dm: i64总计弹幕数
total_elec: i64总计充电数
total_fans: i64总计粉丝数
total_fav: i64总计收藏数
total_like: i64总计点赞数
total_reply: i64总计评论数
总计分享数
Trait Implementations§
Source§impl Clone for UpStatData
impl Clone for UpStatData
Source§fn clone(&self) -> UpStatData
fn clone(&self) -> UpStatData
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 UpStatData
impl Debug for UpStatData
Source§impl<'de> Deserialize<'de> for UpStatData
impl<'de> Deserialize<'de> for UpStatData
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 UpStatData
impl RefUnwindSafe for UpStatData
impl Send for UpStatData
impl Sync for UpStatData
impl Unpin for UpStatData
impl UnwindSafe for UpStatData
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