pub trait PerformanceTimingMethods<D: DomTypes> {
Show 21 methods
// Required methods
fn NavigationStart(&self) -> u64;
fn UnloadEventStart(&self) -> u64;
fn UnloadEventEnd(&self) -> u64;
fn RedirectStart(&self) -> u64;
fn RedirectEnd(&self) -> u64;
fn FetchStart(&self) -> u64;
fn DomainLookupStart(&self) -> u64;
fn DomainLookupEnd(&self) -> u64;
fn ConnectStart(&self) -> u64;
fn ConnectEnd(&self) -> u64;
fn SecureConnectionStart(&self) -> u64;
fn RequestStart(&self) -> u64;
fn ResponseStart(&self) -> u64;
fn ResponseEnd(&self) -> u64;
fn DomLoading(&self) -> u64;
fn DomInteractive(&self) -> u64;
fn DomContentLoadedEventStart(&self) -> u64;
fn DomContentLoadedEventEnd(&self) -> u64;
fn DomComplete(&self) -> u64;
fn LoadEventStart(&self) -> u64;
fn LoadEventEnd(&self) -> u64;
}Required Methods§
fn UnloadEventStart(&self) -> u64
fn UnloadEventEnd(&self) -> u64
fn RedirectStart(&self) -> u64
fn RedirectEnd(&self) -> u64
fn FetchStart(&self) -> u64
fn DomainLookupStart(&self) -> u64
fn DomainLookupEnd(&self) -> u64
fn ConnectStart(&self) -> u64
fn ConnectEnd(&self) -> u64
fn SecureConnectionStart(&self) -> u64
fn RequestStart(&self) -> u64
fn ResponseStart(&self) -> u64
fn ResponseEnd(&self) -> u64
fn DomLoading(&self) -> u64
fn DomInteractive(&self) -> u64
fn DomContentLoadedEventStart(&self) -> u64
fn DomContentLoadedEventEnd(&self) -> u64
fn DomComplete(&self) -> u64
fn LoadEventStart(&self) -> u64
fn LoadEventEnd(&self) -> u64
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".