Struct google_photoslibrary1::MediaMetadata[][src]

pub struct MediaMetadata {
    pub width: Option<String>,
    pub creation_time: Option<String>,
    pub video: Option<Video>,
    pub photo: Option<Photo>,
    pub height: Option<String>,
}

Metadata for a media item.

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

Fields

Original width (in pixels) of the media item.

Time when the media item was first created (not when it was uploaded to Google Photos).

Metadata for a video media type.

Metadata for a photo media type.

Original height (in pixels) of the media item.

Trait Implementations

impl Default for MediaMetadata
[src]

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

impl Clone for MediaMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MediaMetadata
[src]

Formats the value using the given formatter. Read more

impl Part for MediaMetadata
[src]

Auto Trait Implementations