pub trait PerformanceObserverMethods {
    // Required methods
    fn Observe(&self, options: &PerformanceObserverInit) -> Result<(), Error>;
    fn Disconnect(&self);
    fn TakeRecords(&self) -> Vec<Root<Dom<PerformanceEntry>>>;
}

Required Methods§

Implementors§