Struct google_youtube3::api::VideoStatus[][src]

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

Basic details about a video category, such as its localized title. Next Id: 17

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

Fields

embeddable: Option<bool>

This value indicates if the video can be embedded on another website. @mutable youtube.videos.insert youtube.videos.update

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.

license: Option<String>

The video's license. @mutable youtube.videos.insert youtube.videos.update

made_for_kids: Option<bool>

no description provided

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. @mutable youtube.videos.insert youtube.videos.update

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..

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.

self_declared_made_for_kids: Option<bool>

no description provided

upload_status: Option<String>

The status of the uploaded video.

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

impl RefUnwindSafe for VideoStatus[src]

impl Send for VideoStatus[src]

impl Sync for VideoStatus[src]

impl Unpin for VideoStatus[src]

impl UnwindSafe for VideoStatus[src]

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> Instrument 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.