[][src]Struct google_youtube3::VideoStatistics

pub struct VideoStatistics {
    pub comment_count: Option<String>,
    pub view_count: Option<String>,
    pub favorite_count: Option<String>,
    pub dislike_count: Option<String>,
    pub like_count: Option<String>,
}

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<String>

The number of comments for the video.

view_count: Option<String>

The number of times the video has been viewed.

favorite_count: Option<String>

The number of users who currently have the video marked as a favorite video.

dislike_count: Option<String>

The number of users who have indicated that they disliked the video by giving it a negative rating.

like_count: Option<String>

The number of users who have indicated that they liked the video by giving it a positive rating.

Trait Implementations

impl Clone for VideoStatistics[src]

impl Debug for VideoStatistics[src]

impl Default for VideoStatistics[src]

impl<'de> Deserialize<'de> for VideoStatistics[src]

impl Part for VideoStatistics[src]

impl Serialize for VideoStatistics[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any