settings/handler.rs
1// Copyright 2019 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/// The base mod defines the basic communication building blocks used by setting
6/// handlers.
7pub mod base;
8
9/// This mod implements a struct for managing storage of the setting_proxies inspect node.
10pub mod setting_proxy_inspect_info;
11
12/// Trait definition for setting controllers and a wrapper handler to interface
13/// with the proxy.
14pub mod setting_handler;
15
16pub(crate) mod setting_proxy;
17
18/// This mod implements a factory that can be populated to provide handlers on
19/// demand.
20pub(crate) mod setting_handler_factory_impl;