[][src]Struct google_pagespeedonline5::LighthouseResultV5

pub struct LighthouseResultV5 {
    pub environment: Option<LighthouseResultV5Environment>,
    pub fetch_time: Option<String>,
    pub category_groups: Option<HashMap<String, LighthouseResultV5CategoryGroups>>,
    pub config_settings: Option<LighthouseResultV5ConfigSettings>,
    pub runtime_error: Option<LighthouseResultV5RuntimeError>,
    pub final_url: Option<String>,
    pub lighthouse_version: Option<String>,
    pub stack_packs: Option<Vec<LighthouseResultV5StackPacks>>,
    pub i18n: Option<LighthouseResultV5I18n>,
    pub run_warnings: Option<Vec<String>>,
    pub timing: Option<LighthouseResultV5Timing>,
    pub user_agent: Option<String>,
    pub audits: Option<HashMap<String, LighthouseAuditResultV5>>,
    pub categories: Option<LighthouseResultV5Categories>,
    pub requested_url: Option<String>,
}

There is no detailed description.

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

Fields

environment: Option<LighthouseResultV5Environment>

Environment settings that were used when making this LHR.

fetch_time: Option<String>

The time that this run was fetched.

category_groups: Option<HashMap<String, LighthouseResultV5CategoryGroups>>

Map of category groups in the LHR.

config_settings: Option<LighthouseResultV5ConfigSettings>

The configuration settings for this LHR.

runtime_error: Option<LighthouseResultV5RuntimeError>

A top-level error message that, if present, indicates a serious enough problem that this Lighthouse result may need to be discarded.

final_url: Option<String>

The final resolved url that was audited.

lighthouse_version: Option<String>

The lighthouse version that was used to generate this LHR.

stack_packs: Option<Vec<LighthouseResultV5StackPacks>>

The Stack Pack advice strings.

i18n: Option<LighthouseResultV5I18n>

The internationalization strings that are required to render the LHR.

run_warnings: Option<Vec<String>>

List of all run warnings in the LHR. Will always output to at least [].

timing: Option<LighthouseResultV5Timing>

Timing information for this LHR.

user_agent: Option<String>

The user agent that was used to run this LHR.

audits: Option<HashMap<String, LighthouseAuditResultV5>>

Map of audits in the LHR.

categories: Option<LighthouseResultV5Categories>

Map of categories in the LHR.

requested_url: Option<String>

The original requested url.

Trait Implementations

impl Part for LighthouseResultV5[src]

impl Clone for LighthouseResultV5[src]

impl Default for LighthouseResultV5[src]

impl Debug for LighthouseResultV5[src]

impl Serialize for LighthouseResultV5[src]

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

Auto Trait Implementations

Blanket Implementations

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 = !

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

impl<T> BorrowMut<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

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