[][src]Struct google_youtube3::Video

pub struct Video {
    pub status: Option<VideoStatus>,
    pub topic_details: Option<VideoTopicDetails>,
    pub monetization_details: Option<VideoMonetizationDetails>,
    pub suggestions: Option<VideoSuggestions>,
    pub age_gating: Option<VideoAgeGating>,
    pub file_details: Option<VideoFileDetails>,
    pub player: Option<VideoPlayer>,
    pub id: Option<String>,
    pub localizations: Option<HashMap<String, VideoLocalization>>,
    pub live_streaming_details: Option<VideoLiveStreamingDetails>,
    pub snippet: Option<VideoSnippet>,
    pub kind: Option<String>,
    pub statistics: Option<VideoStatistics>,
    pub project_details: Option<VideoProjectDetails>,
    pub processing_details: Option<VideoProcessingDetails>,
    pub etag: Option<String>,
    pub content_details: Option<VideoContentDetails>,
    pub recording_details: Option<VideoRecordingDetails>,
}

A video resource represents a YouTube video.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

status: Option<VideoStatus>

The status object contains information about the video's uploading, processing, and privacy statuses.

topic_details: Option<VideoTopicDetails>

The topicDetails object encapsulates information about Freebase topics associated with the video.

monetization_details: Option<VideoMonetizationDetails>

The monetizationDetails object encapsulates information about the monetization status of the video.

suggestions: Option<VideoSuggestions>

The suggestions object encapsulates suggestions that identify opportunities to improve the video quality or the metadata for the uploaded video. This data can only be retrieved by the video owner.

age_gating: Option<VideoAgeGating>

Age restriction details related to a video. This data can only be retrieved by the video owner.

file_details: Option<VideoFileDetails>

The fileDetails object encapsulates information about the video file that was uploaded to YouTube, including the file's resolution, duration, audio and video codecs, stream bitrates, and more. This data can only be retrieved by the video owner.

player: Option<VideoPlayer>

The player object contains information that you would use to play the video in an embedded player.

id: Option<String>

The ID that YouTube uses to uniquely identify the video.

localizations: Option<HashMap<String, VideoLocalization>>

List with all localizations.

live_streaming_details: Option<VideoLiveStreamingDetails>

The liveStreamingDetails object contains metadata about a live video broadcast. The object will only be present in a video resource if the video is an upcoming, live, or completed live broadcast.

snippet: Option<VideoSnippet>

The snippet object contains basic details about the video, such as its title, description, and category.

kind: Option<String>

Identifies what kind of resource this is. Value: the fixed string "youtube#video".

statistics: Option<VideoStatistics>

The statistics object contains statistics about the video.

project_details: Option<VideoProjectDetails>

The projectDetails object contains information about the project specific video metadata.

processing_details: Option<VideoProcessingDetails>

The processingDetails object encapsulates information about YouTube's progress in processing the uploaded video file. The properties in the object identify the current processing status and an estimate of the time remaining until YouTube finishes processing the video. This part also indicates whether different types of data or content, such as file details or thumbnail images, are available for the video.

The processingProgress object is designed to be polled so that the video uploaded can track the progress that YouTube has made in processing the uploaded video file. This data can only be retrieved by the video owner.

etag: Option<String>

Etag of this resource.

content_details: Option<VideoContentDetails>

The contentDetails object contains information about the video content, including the length of the video and its aspect ratio.

recording_details: Option<VideoRecordingDetails>

The recordingDetails object encapsulates information about the location, date and address where the video was recorded.

Trait Implementations

impl Resource for Video[src]

impl ResponseResult for Video[src]

impl RequestValue for Video[src]

impl ToParts for Video[src]

fn to_parts(&self) -> String[src]

Return a comma separated list of members that are currently set, i.e. for which self.member.is_some(). The produced string is suitable for use as a parts list that indicates the parts you are sending, and/or the parts you want to see in the server response.

impl Clone for Video[src]

impl Default for Video[src]

impl Debug for Video[src]

impl Serialize for Video[src]

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

Auto Trait Implementations

impl Send for Video

impl Sync for Video

impl Unpin for Video

impl UnwindSafe for Video

impl RefUnwindSafe for Video

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]