script/dom/performance/
mod.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5pub(crate) mod largestcontentfulpaint;
6#[allow(clippy::module_inception, reason = "The interface name is Performance")]
7pub(crate) mod performance;
8#[expect(dead_code)]
9pub(crate) mod performanceentry;
10pub(crate) mod performancemark;
11pub(crate) mod performancemeasure;
12pub(crate) mod performancenavigation;
13pub(crate) mod performancenavigationtiming;
14#[expect(dead_code)]
15pub(crate) mod performanceobserver;
16pub(crate) mod performanceobserverentrylist;
17pub(crate) mod performancepainttiming;
18pub(crate) mod performanceresourcetiming;
19
20pub(crate) use self::performance::Performance;