[][src]Struct google_youtube3::VideoStatus

pub struct VideoStatus {
    pub license: Option<String>,
    pub embeddable: Option<bool>,
    pub privacy_status: Option<String>,
    pub public_stats_viewable: Option<bool>,
    pub publish_at: Option<String>,
    pub self_declared_made_for_kids: Option<bool>,
    pub made_for_kids: Option<bool>,
    pub upload_status: Option<String>,
    pub rejection_reason: Option<String>,
    pub failure_reason: Option<String>,
}

Basic details about a video category, such as its localized title.

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

Fields

license: Option<String>

The video's license.

embeddable: Option<bool>

This value indicates if the video can be embedded on another website.

privacy_status: Option<String>

The video's privacy status.

public_stats_viewable: Option<bool>

This value indicates if the extended video statistics on the watch page can be viewed by everyone. Note that the view count, likes, etc will still be visible if this is disabled.

publish_at: Option<String>

The date and time when the video is scheduled to publish. It can be set only if the privacy status of the video is private. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

self_declared_made_for_kids: Option<bool>

no description provided

made_for_kids: Option<bool>

no description provided

upload_status: Option<String>

The status of the uploaded video.

rejection_reason: Option<String>

This value explains why YouTube rejected an uploaded video. This property is only present if the uploadStatus property indicates that the upload was rejected.

failure_reason: Option<String>

This value explains why a video failed to upload. This property is only present if the uploadStatus property indicates that the upload failed.

Trait Implementations

impl Clone for VideoStatus[src]

impl Debug for VideoStatus[src]

impl Default for VideoStatus[src]

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

impl Part for VideoStatus[src]

impl Serialize for VideoStatus[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