Struct google_youtube3::VideoStatistics [] [src]

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

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

The number of comments for the video.

The number of times the video has been viewed.

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

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

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

Trait Implementations

impl Default for VideoStatistics
[src]

[src]

Returns the "default value" for a type. Read more

impl Clone for VideoStatistics
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for VideoStatistics
[src]

[src]

Formats the value using the given formatter.

impl Part for VideoStatistics
[src]