Struct google_drive2::FileVideoMediaMetadata[][src]

pub struct FileVideoMediaMetadata {
    pub width: Option<i32>,
    pub duration_millis: Option<String>,
    pub height: Option<i32>,
}

Metadata about video media. This will only be present for video types.

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

Fields

The width of the video in pixels.

The duration of the video in milliseconds.

The height of the video in pixels.

Trait Implementations

impl Default for FileVideoMediaMetadata
[src]

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

impl Clone for FileVideoMediaMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FileVideoMediaMetadata
[src]

Formats the value using the given formatter. Read more

impl NestedType for FileVideoMediaMetadata
[src]

impl Part for FileVideoMediaMetadata
[src]

Auto Trait Implementations