[][src]Struct google_games1::SnapshotImage

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

url: Option<String>

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

width: Option<i32>

The width of the image.

kind: Option<String>

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

mime_type: Option<String>

The MIME type of the image.

height: Option<i32>

The height of the image.

Trait Implementations

impl Clone for SnapshotImage[src]

impl Debug for SnapshotImage[src]

impl Default for SnapshotImage[src]

impl<'de> Deserialize<'de> for SnapshotImage[src]

impl Part for SnapshotImage[src]

impl Serialize for SnapshotImage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any