Struct google_youtube3::VideoContentDetails [] [src]

pub struct VideoContentDetails {
    pub definition: Option<String>,
    pub projection: Option<String>,
    pub country_restriction: Option<AccessPolicy>,
    pub has_custom_thumbnail: Option<bool>,
    pub content_rating: Option<ContentRating>,
    pub caption: Option<String>,
    pub region_restriction: Option<VideoContentDetailsRegionRestriction>,
    pub duration: Option<String>,
    pub licensed_content: Option<bool>,
    pub dimension: Option<String>,
}

Details about the content of a YouTube Video.

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

Fields

The value of definition indicates whether the video is available in high definition or only in standard definition.

Specifies the projection format of the video.

The countryRestriction object contains information about the countries where a video is (or is not) viewable.

Indicates whether the video uploader has provided a custom thumbnail image for the video. This property is only visible to the video uploader.

Specifies the ratings that the video received under various rating schemes.

The value of captions indicates whether the video has captions or not.

The regionRestriction object contains information about the countries where a video is (or is not) viewable. The object will contain either the contentDetails.regionRestriction.allowed property or the contentDetails.regionRestriction.blocked property.

The length of the video. The tag value is an ISO 8601 duration in the format PT#M#S, in which the letters PT indicate that the value specifies a period of time, and the letters M and S refer to length in minutes and seconds, respectively. The # characters preceding the M and S letters are both integers that specify the number of minutes (or seconds) of the video. For example, a value of PT15M51S indicates that the video is 15 minutes and 51 seconds long.

The value of is_license_content indicates whether the video is licensed content.

The value of dimension indicates whether the video is available in 3D or in 2D.

Trait Implementations

impl Debug for VideoContentDetails
[src]

Formats the value using the given formatter.

impl Clone for VideoContentDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for VideoContentDetails
[src]

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

impl Part for VideoContentDetails
[src]