settings/handler/
setting_proxy_inspect_info.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
5/// Used to manage the lifetime of the inspect node for `setting_proxy`.
6pub struct SettingProxyInspectInfo {
7    node: fuchsia_inspect::Node,
8}
9
10impl SettingProxyInspectInfo {
11    /// Construct a new `setting_proxy` node under the `parent` node.
12    pub fn new(parent: &fuchsia_inspect::Node) -> Self {
13        Self { node: parent.create_child("setting_proxy") }
14    }
15
16    /// Retrieve the `setting_proxy` node.
17    pub fn node(&self) -> &fuchsia_inspect::Node {
18        &self.node
19    }
20}