settings_inspect_utils/lib.rs
1// Copyright 2022 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/// A wrapper around [std::collections::VecDeque] that holds [String].
6///
7/// Can be wrapped in an [fuchsia_inspect_derive::IValue] and written to inspect
8/// as a single property with its value being a comma-separated list that's
9/// concatenation of all of the items in the VecDeque.
10pub mod joinable_inspect_vecdeque;
11
12/// A map that controls an inspect node and writes inserted items to the node automatically.
13pub mod managed_inspect_map;
14
15/// A queue that controls an inspect node and writes inserted items to the node automatically.
16pub mod managed_inspect_queue;