Struct google_pagespeedonline2::ResultType[][src]

pub struct ResultType {
    pub kind: Option<String>,
    pub response_code: Option<i32>,
    pub screenshot: Option<PagespeedApiImageV2>,
    pub title: Option<String>,
    pub rule_groups: Option<HashMap<String, ResultRuleGroups>>,
    pub version: Option<ResultVersion>,
    pub formatted_results: Option<ResultFormattedResults>,
    pub invalid_rules: Option<Vec<String>>,
    pub page_stats: Option<ResultPageStats>,
    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.

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

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.

The version of PageSpeed used to generate these results.

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

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 ResultType
[src]

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

impl Clone for ResultType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ResultType
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ResultType
[src]

Auto Trait Implementations

impl Send for ResultType

impl Sync for ResultType