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

pub struct ResourceTiming {
    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 send_start: f64,
    pub send_end: f64,
    pub push_start: f64,
    pub push_end: f64,
    pub receive_headers_end: f64,
}

Timing information for the request.

Fields

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

Started resolving proxy.

Finished resolving proxy.

Started DNS address resolve.

Finished DNS address resolve.

Started connecting to the remote host.

Connected to the remote host.

Started SSL handshake.

Finished SSL handshake.

[Experimental] Started running ServiceWorker.

[Experimental] Finished Starting ServiceWorker.

Started sending request.

Finished sending request.

[Experimental] Time the server started pushing request.

[Experimental] Time the server finished pushing request.

Finished receiving response headers.

Trait Implementations

impl Clone for ResourceTiming
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ResourceTiming
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for ResourceTiming
[src]

[src]

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

[src]

This method tests for !=.