Struct chrome_remote_interface_model::network::ResourceTiming [−][src]
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]
fn clone(&self) -> ResourceTiming[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for ResourceTiming[src]
impl<'de> Deserialize<'de> for ResourceTiming[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Serialize for ResourceTiming[src]
Auto Trait Implementations
impl RefUnwindSafe for ResourceTiming[src]
impl Send for ResourceTiming[src]
impl Sync for ResourceTiming[src]
impl Unpin for ResourceTiming[src]
impl UnwindSafe for ResourceTiming[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,