[][src]Struct google_pagespeedonline4::PagespeedApiPagespeedResponseV4

pub struct PagespeedApiPagespeedResponseV4 {
    pub kind: Option<String>,
    pub captcha_result: Option<String>,
    pub formatted_results: Option<PagespeedApiPagespeedResponseV4FormattedResults>,
    pub screenshot: Option<PagespeedApiImageV4>,
    pub title: Option<String>,
    pub rule_groups: Option<HashMap<String, PagespeedApiPagespeedResponseV4RuleGroups>>,
    pub snapshots: Option<Vec<PagespeedApiImageV4>>,
    pub loading_experience: Option<PagespeedApiPagespeedResponseV4LoadingExperience>,
    pub version: Option<PagespeedApiPagespeedResponseV4Version>,
    pub response_code: Option<i32>,
    pub invalid_rules: Option<Vec<String>>,
    pub page_stats: Option<PagespeedApiPagespeedResponseV4PageStats>,
    pub id: Option<String>,
}

There is no detailed description.

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

kind: Option<String>

Kind of result.

captcha_result: Option<String>

The captcha verify result

formatted_results: Option<PagespeedApiPagespeedResponseV4FormattedResults>

Localized PageSpeed results. Contains a ruleResults entry for each PageSpeed rule instantiated and run by the server.

screenshot: Option<PagespeedApiImageV4>

Base64-encoded screenshot of the page that was analyzed.

title: Option<String>

Title of the page, as displayed in the browser's title bar.

rule_groups: Option<HashMap<String, PagespeedApiPagespeedResponseV4RuleGroups>>

A map with one entry for each rule group in these results.

snapshots: Option<Vec<PagespeedApiImageV4>>

Additional base64-encoded screenshots of the page, in various partial render states.

loading_experience: Option<PagespeedApiPagespeedResponseV4LoadingExperience>

Metrics of end users' page loading experience.

version: Option<PagespeedApiPagespeedResponseV4Version>

The version of PageSpeed used to generate these results.

response_code: Option<i32>

Response code for the document. 200 indicates a normal page load. 4xx/5xx indicates an error.

invalid_rules: Option<Vec<String>>

List of rules that were specified in the request, but which the server did not know how to instantiate.

page_stats: Option<PagespeedApiPagespeedResponseV4PageStats>

Summary statistics for the page, such as number of JavaScript bytes, number of HTML bytes, etc.

id: Option<String>

Canonicalized and final URL for the document, after following page redirects (if any).

Trait Implementations

impl ResponseResult for PagespeedApiPagespeedResponseV4[src]

impl Default for PagespeedApiPagespeedResponseV4[src]

impl Clone for PagespeedApiPagespeedResponseV4[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for PagespeedApiPagespeedResponseV4[src]

impl Serialize for PagespeedApiPagespeedResponseV4[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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