Struct chrome_remote_interface_model::network::ResourceTiming[][src]

pub struct ResourceTiming { /* fields omitted */ }

Timing information for the request.

Implementations

impl ResourceTiming[src]

pub fn builder() -> ResourceTimingBuilder[src]

pub fn request_time(&self) -> f64[src]

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

pub fn proxy_start(&self) -> f64[src]

Started resolving proxy.

pub fn proxy_end(&self) -> f64[src]

Finished resolving proxy.

pub fn dns_start(&self) -> f64[src]

Started DNS address resolve.

pub fn dns_end(&self) -> f64[src]

Finished DNS address resolve.

pub fn connect_start(&self) -> f64[src]

Started connecting to the remote host.

pub fn connect_end(&self) -> f64[src]

Connected to the remote host.

pub fn ssl_start(&self) -> f64[src]

Started SSL handshake.

pub fn ssl_end(&self) -> f64[src]

Finished SSL handshake.

pub fn worker_start(&self) -> f64[src]

Started running ServiceWorker.

pub fn worker_ready(&self) -> f64[src]

Finished Starting ServiceWorker.

pub fn worker_fetch_start(&self) -> f64[src]

Started fetch event.

pub fn worker_respond_with_settled(&self) -> f64[src]

Settled fetch event respondWith promise.

pub fn send_start(&self) -> f64[src]

Started sending request.

pub fn send_end(&self) -> f64[src]

Finished sending request.

pub fn push_start(&self) -> f64[src]

Time the server started pushing request.

pub fn push_end(&self) -> f64[src]

Time the server finished pushing request.

pub fn receive_headers_end(&self) -> f64[src]

Finished receiving response headers.

Trait Implementations

impl Clone for ResourceTiming[src]

impl Debug for ResourceTiming[src]

impl<'de> Deserialize<'de> for ResourceTiming[src]

impl Serialize for ResourceTiming[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.