Struct google_pagespeedonline4::PagespeedApiPagespeedResponseV4[][src]

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 of result.

The captcha verify result

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

Base64-encoded screenshot of the page that was analyzed.

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

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

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

Metrics of end users' page loading experience.

The version of PageSpeed used to generate these results.

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

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

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

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

Trait Implementations

impl Default for PagespeedApiPagespeedResponseV4
[src]

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

impl Clone for PagespeedApiPagespeedResponseV4
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PagespeedApiPagespeedResponseV4
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for PagespeedApiPagespeedResponseV4
[src]

Auto Trait Implementations