fuchsia_inspect_contrib/
lib.rs

1// Copyright 2020 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
5//! # fuchsia-inspect-contrib
6//!
7//! This library is intended for contributions to the inspect library from clients. These are
8//! patterns that clients identify in their usage of inspect that they can generalize and share.
9//! It’s intended to be at a higher level than [`fuchsia-inspect`][fuchsia_inspect]. Some of the APIs
10//! in this library might be promoted to the core library sometime in the future.
11//!
12//! [fuchsia_inspect]: crate.fuchsia_inspect.html
13
14pub mod graph;
15pub mod id_enum;
16pub mod inspectable;
17#[macro_use]
18pub mod log;
19pub mod nodes;
20#[macro_use]
21mod self_profile;
22
23pub use self_profile::{start_self_profiling, stop_self_profiling, ProfileDuration};