pub struct VideoStatsStatistics {
pub comment_count: Option<i64>,
pub like_count: Option<i64>,
pub view_count: Option<i64>,
}Expand description
Statistics about the video, such as the number of times the video was viewed or liked.
This type is not used in any activity, and only used as part of another schema.
Fields§
§comment_count: Option<i64>Output only. The number of comments for the video.
like_count: Option<i64>Output only. The number of users who have indicated that they liked the video by giving it a positive rating.
view_count: Option<i64>Output only. The number of times the video has been viewed.
Trait Implementations§
Source§impl Clone for VideoStatsStatistics
impl Clone for VideoStatsStatistics
Source§fn clone(&self) -> VideoStatsStatistics
fn clone(&self) -> VideoStatsStatistics
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 VideoStatsStatistics
impl Debug for VideoStatsStatistics
Source§impl Default for VideoStatsStatistics
impl Default for VideoStatsStatistics
Source§fn default() -> VideoStatsStatistics
fn default() -> VideoStatsStatistics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VideoStatsStatistics
impl<'de> Deserialize<'de> for VideoStatsStatistics
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
Source§impl Serialize for VideoStatsStatistics
impl Serialize for VideoStatsStatistics
impl Part for VideoStatsStatistics
Auto Trait Implementations§
impl Freeze for VideoStatsStatistics
impl RefUnwindSafe for VideoStatsStatistics
impl Send for VideoStatsStatistics
impl Sync for VideoStatsStatistics
impl Unpin for VideoStatsStatistics
impl UnwindSafe for VideoStatsStatistics
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