[][src]Struct google_youtube3::VideoContentDetails

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

definition: Option<String>

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

projection: Option<String>

Specifies the projection format of the video.

country_restriction: Option<AccessPolicy>

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

has_custom_thumbnail: Option<bool>

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

content_rating: Option<ContentRating>

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

caption: Option<String>

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

region_restriction: Option<VideoContentDetailsRegionRestriction>

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.

duration: Option<String>

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.

licensed_content: Option<bool>

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

dimension: Option<String>

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

Trait Implementations

impl Part for VideoContentDetails[src]

impl Clone for VideoContentDetails[src]

impl Default for VideoContentDetails[src]

impl Debug for VideoContentDetails[src]

impl Serialize for VideoContentDetails[src]

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

Auto Trait Implementations

Blanket Implementations

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 = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

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