pub struct WasmNavigationTiming {
pub url: String,
pub dns_ms: f64,
pub tcp_ms: f64,
pub tls_ms: f64,
pub ttfb_ms: f64,
pub dom_content_loaded_ms: f64,
pub load_ms: f64,
}Expand description
Navigation timing data.
Fields§
§url: StringPage URL.
dns_ms: f64DNS lookup time in milliseconds.
tcp_ms: f64TCP connection time in milliseconds.
tls_ms: f64TLS handshake time in milliseconds.
ttfb_ms: f64Time to First Byte in milliseconds.
dom_content_loaded_ms: f64DOM Content Loaded time in milliseconds.
load_ms: f64Page load time in milliseconds.
Trait Implementations§
Source§fn clone(&self) -> WasmNavigationTiming
fn clone(&self) -> WasmNavigationTiming
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more