pub struct VideoTrendItem {
pub date_key: i64,
pub total_inc: i64,
}Expand description
UP主视频数据增量趋势项
Fields§
§date_key: i64对应时间戳(前一天8:00)
total_inc: i64增加数量,数据类型决定
Trait Implementations§
Source§impl Clone for VideoTrendItem
impl Clone for VideoTrendItem
Source§fn clone(&self) -> VideoTrendItem
fn clone(&self) -> VideoTrendItem
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 VideoTrendItem
impl Debug for VideoTrendItem
Source§impl<'de> Deserialize<'de> for VideoTrendItem
impl<'de> Deserialize<'de> for VideoTrendItem
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 VideoTrendItem
impl RefUnwindSafe for VideoTrendItem
impl Send for VideoTrendItem
impl Sync for VideoTrendItem
impl Unpin for VideoTrendItem
impl UnsafeUnpin for VideoTrendItem
impl UnwindSafe for VideoTrendItem
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