Struct chromiumoxide_cdp::cdp::browser_protocol::network::ResourceTiming[][src]

pub struct ResourceTiming {
Show fields pub request_time: f64, pub proxy_start: f64, pub proxy_end: f64, pub dns_start: f64, pub dns_end: f64, pub connect_start: f64, pub connect_end: f64, pub ssl_start: f64, pub ssl_end: f64, pub worker_start: f64, pub worker_ready: f64, pub worker_fetch_start: f64, pub worker_respond_with_settled: f64, pub send_start: f64, pub send_end: f64, pub push_start: f64, pub push_end: f64, pub receive_headers_end: f64,
}
Expand description

Timing information for the request. ResourceTiming

Fields

request_time: f64

Timing’s requestTime is a baseline in seconds, while the other numbers are ticks in milliseconds relatively to this requestTime.

proxy_start: f64

Started resolving proxy.

proxy_end: f64

Finished resolving proxy.

dns_start: f64

Started DNS address resolve.

dns_end: f64

Finished DNS address resolve.

connect_start: f64

Started connecting to the remote host.

connect_end: f64

Connected to the remote host.

ssl_start: f64

Started SSL handshake.

ssl_end: f64

Finished SSL handshake.

worker_start: f64

Started running ServiceWorker.

worker_ready: f64

Finished Starting ServiceWorker.

worker_fetch_start: f64

Started fetch event.

worker_respond_with_settled: f64

Settled fetch event respondWith promise.

send_start: f64

Started sending request.

send_end: f64

Finished sending request.

push_start: f64

Time the server started pushing request.

push_end: f64

Time the server finished pushing request.

receive_headers_end: f64

Finished receiving response headers.

Implementations

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

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Performs the conversion.

Performs the conversion.

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)

recently added

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.