Struct google_games1::SnapshotImage[][src]

pub struct SnapshotImage {
    pub url: Option<String>,
    pub width: Option<i32>,
    pub kind: Option<String>,
    pub mime_type: Option<String>,
    pub height: Option<i32>,
}

This is a JSON template for an image of a snapshot.

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

Fields

The URL of the image. This URL may be invalidated at any time and should not be cached.

The width of the image.

Uniquely identifies the type of this resource. Value is always the fixed string games#snapshotImage.

The MIME type of the image.

The height of the image.

Trait Implementations

impl Default for SnapshotImage
[src]

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

impl Clone for SnapshotImage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SnapshotImage
[src]

Formats the value using the given formatter. Read more

impl Part for SnapshotImage
[src]

Auto Trait Implementations