Struct google_youtube3::Video [] [src]

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

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

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

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

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 restriction details related to a video. This data can only be retrieved by the video owner.

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.

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

The ID that YouTube uses to uniquely identify the video.

List with all localizations.

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.

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

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

The statistics object contains statistics about the video.

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

The processingProgress 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 of this resource.

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

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

Trait Implementations

impl Default for Video
[src]

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

impl Clone for Video
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Video
[src]

Formats the value using the given formatter.

impl RequestValue for Video
[src]

impl Resource for Video
[src]

impl ResponseResult for Video
[src]

impl ToParts for Video
[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.