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 content_publisher;
15pub mod graph;
16pub mod id_enum;
17pub mod inspectable;
18#[macro_use]
19pub mod log;
20pub mod nodes;