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
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
[Experimental] Started running ServiceWorker.
worker_ready: f64
[Experimental] Finished Starting ServiceWorker.
send_start: f64
Started sending request.
send_end: f64
Finished sending request.
push_start: f64
[Experimental] Time the server started pushing request.
push_end: f64
[Experimental] Time the server finished pushing request.
receive_headers_end: f64
Finished receiving response headers.
Trait Implementations
impl Clone for ResourceTiming
[src]
fn clone(&self) -> ResourceTiming
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ResourceTiming
[src]
impl PartialEq for ResourceTiming
[src]
fn eq(&self, __arg_0: &ResourceTiming) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ResourceTiming) -> bool
[src]
This method tests for !=
.