pub(crate) trait PerformanceObserverEntryListMethods<D: DomTypes> {
    // Required methods
    fn GetEntries(&self) -> Vec<DomRoot<D::PerformanceEntry>>;
    fn GetEntriesByType(
        &self,
        entryType: DOMString,
    ) -> Vec<DomRoot<D::PerformanceEntry>>;
    fn GetEntriesByName(
        &self,
        name: DOMString,
        entryType: Option<DOMString>,
    ) -> Vec<DomRoot<D::PerformanceEntry>>;
}

Required Methods§

Implementors§