Struct google_photoslibrary1::api::Album[][src]

pub struct Album {
    pub cover_photo_base_url: Option<String>,
    pub cover_photo_media_item_id: Option<String>,
    pub id: Option<String>,
    pub is_writeable: Option<bool>,
    pub media_items_count: Option<String>,
    pub product_url: Option<String>,
    pub share_info: Option<ShareInfo>,
    pub title: Option<String>,
}
Expand description

Representation of an album in Google Photos. Albums are containers for media items. If an album has been shared by the application, it contains an extra shareInfo property.

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

cover_photo_base_url: Option<String>

[Output only] A URL to the cover photo’s bytes. This shouldn’t be used as is. Parameters should be appended to this URL before use. See the developer documentation for a complete list of supported parameters. For example, '=w2048-h1024' sets the dimensions of the cover photo to have a width of 2048 px and height of 1024 px.

cover_photo_media_item_id: Option<String>

Identifier for the media item associated with the cover photo.

id: Option<String>

Identifier for the album. This is a persistent identifier that can be used between sessions to identify this album.

is_writeable: Option<bool>

[Output only] True if you can create media items in this album. This field is based on the scopes granted and permissions of the album. If the scopes are changed or permissions of the album are changed, this field is updated.

media_items_count: Option<String>

[Output only] The number of media items in the album.

product_url: Option<String>

[Output only] Google Photos URL for the album. The user needs to be signed in to their Google Photos account to access this link.

share_info: Option<ShareInfo>

[Output only] Information related to shared albums. This field is only populated if the album is a shared album, the developer created the album and the user has granted the photoslibrary.sharing scope.

title: Option<String>

Name of the album displayed to the user in their Google Photos account. This string shouldn’t be more than 500 characters.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.