Struct google_pagespeedonline2::PagespeedApiImageV2[][src]

pub struct PagespeedApiImageV2 {
    pub width: Option<i32>,
    pub key: Option<String>,
    pub page_rect: Option<PagespeedApiImageV2PageRect>,
    pub data: Option<String>,
    pub mime_type: Option<String>,
    pub height: Option<i32>,
}

There is no detailed description.

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

Fields

Width of screenshot in pixels.

Unique string key, if any, identifying this image.

The region of the page that is captured by this image, with dimensions measured in CSS pixels.

Image data base64 encoded.

Mime type of image data (e.g. "image/jpeg").

Height of screenshot in pixels.

Trait Implementations

impl Default for PagespeedApiImageV2
[src]

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

impl Clone for PagespeedApiImageV2
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PagespeedApiImageV2
[src]

Formats the value using the given formatter. Read more

impl Part for PagespeedApiImageV2
[src]

Auto Trait Implementations