pub struct ResultPageStats {
Show 13 fields pub css_response_bytes: Option<String>, pub flash_response_bytes: Option<String>, pub html_response_bytes: Option<String>, pub image_response_bytes: Option<String>, pub javascript_response_bytes: Option<String>, pub number_css_resources: Option<i32>, pub number_hosts: Option<i32>, pub number_js_resources: Option<i32>, pub number_resources: Option<i32>, pub number_static_resources: Option<i32>, pub other_response_bytes: Option<String>, pub text_response_bytes: Option<String>, pub total_request_bytes: Option<String>,
}
Expand description

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

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

Fields

css_response_bytes: Option<String>

Number of uncompressed response bytes for CSS resources on the page.

flash_response_bytes: Option<String>

Number of response bytes for flash resources on the page.

html_response_bytes: Option<String>

Number of uncompressed response bytes for the main HTML document and all iframes on the page.

image_response_bytes: Option<String>

Number of response bytes for image resources on the page.

javascript_response_bytes: Option<String>

Number of uncompressed response bytes for JS resources on the page.

number_css_resources: Option<i32>

Number of CSS resources referenced by the page.

number_hosts: Option<i32>

Number of unique hosts referenced by the page.

number_js_resources: Option<i32>

Number of JavaScript resources referenced by the page.

number_resources: Option<i32>

Number of HTTP resources loaded by the page.

number_static_resources: Option<i32>

Number of static (i.e. cacheable) resources on the page.

other_response_bytes: Option<String>

Number of response bytes for other resources on the page.

text_response_bytes: Option<String>

Number of uncompressed response bytes for text resources not covered by other statistics (i.e non-HTML, non-script, non-CSS resources) on the page.

total_request_bytes: Option<String>

Total size of all request bytes sent by the page.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more