Struct google_photoslibrary1::NewMediaItemResult[][src]

pub struct NewMediaItemResult {
    pub status: Option<Status>,
    pub upload_token: Option<String>,
    pub media_item: Option<MediaItem>,
}

Result of creating a new media item.

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

Fields

If an error occurred during the creation of this media item, this field is populated with information related to the error. For details regarding this field, see Status.

The upload token used to create this new media item.

Media item created with the upload token. It's populated if no errors occurred and the media item was created successfully.

Trait Implementations

impl Default for NewMediaItemResult
[src]

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

impl Clone for NewMediaItemResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NewMediaItemResult
[src]

Formats the value using the given formatter. Read more

impl Part for NewMediaItemResult
[src]

Auto Trait Implementations