blob: 67099dd78bcdc3fc6f5502a518dd3235acabacfa [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// The base mod defines the basic communication building blocks used by setting
/// handlers.
pub mod base;
/// Trait definition for setting controllers and a wrapper handler to interface
/// with the proxy.
pub mod setting_handler;
pub mod setting_proxy;
/// This mod allows controllers to store state in persistent device level storage.
pub mod device_storage;
/// This mod implements a factory that can be populated to provide handlers on
/// demand.
pub mod setting_handler_factory_impl;
/// This mod implements persistent storage.
pub mod store_accessor;