Struct google_youtube3::ChannelStatistics [] [src]

pub struct ChannelStatistics {
    pub comment_count: Option<i64>,
    pub subscriber_count: Option<i64>,
    pub video_count: Option<i64>,
    pub hidden_subscriber_count: Option<bool>,
    pub view_count: Option<i64>,
}

Statistics about a channel: number of subscribers, number of videos in the channel, etc.

This type is not used in any activity, and only used as part of another schema.

Fields

The number of comments for the channel.

The number of subscribers that the channel has.

The number of videos uploaded to the channel.

Whether or not the number of subscribers is shown for this user.

The number of times the channel has been viewed.

Trait Implementations

impl Default for ChannelStatistics
[src]

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

impl Clone for ChannelStatistics
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ChannelStatistics
[src]

Formats the value using the given formatter.

impl Part for ChannelStatistics
[src]