pub struct ResponseTiming {
pub start_time: f64,
pub domain_lookup_start: f64,
pub domain_lookup_end: f64,
pub connect_start: f64,
pub secure_connection_start: f64,
pub connect_end: f64,
pub request_start: f64,
pub response_start: f64,
}Fields§
§start_time: f64Request start time in milliseconds elapsed since January 1, 1970 00:00:00 UTC
domain_lookup_start: f64Time immediately before the browser starts the domain name lookup for the resource. The value is given in milliseconds\nrelative to startTime, -1 if not available.
domain_lookup_end: f64Time immediately after the browser starts the domain name lookup for the resource. The value is given in milliseconds\nrelative to startTime, -1 if not available.
connect_start: f64Time immediately before the user agent starts establishing the connection to the server to retrieve the resource. The\nvalue is given in milliseconds relative to startTime, -1 if not available.
secure_connection_start: f64Time immediately before the browser starts the handshake process to secure the current connection. The value is given in\nmilliseconds relative to startTime, -1 if not available.
connect_end: f64Time immediately before the user agent starts establishing the connection to the server to retrieve the resource. The\nvalue is given in milliseconds relative to startTime, -1 if not available.
request_start: f64Time immediately before the browser starts requesting the resource from the server, cache, or local resource. The value\nis given in milliseconds relative to startTime, -1 if not available.
response_start: f64Time immediately after the browser starts requesting the resource from the server, cache, or local resource. The value\nis given in milliseconds relative to startTime, -1 if not available.
Trait Implementations§
Source§impl Clone for ResponseTiming
impl Clone for ResponseTiming
Source§fn clone(&self) -> ResponseTiming
fn clone(&self) -> ResponseTiming
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more