diagnostics/task_metrics/mod.rs
1// Copyright 2021 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5pub use crate::task_metrics::component_tree_stats::ComponentTreeStats;
6
7mod component_stats;
8mod component_tree_stats;
9mod constants;
10mod measurement;
11pub mod runtime_stats_source;
12mod task_info;
13pub mod testing;