fdf/
lib.rs

1// Copyright 2024 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//! Bindings for the fuchsia driver framework C API
6#![deny(unsafe_op_in_unsafe_fn, missing_docs)]
7
8// Note: we explicitly export only the parts of the sub-crates that we expect to be used in user
9// code to allow for sharing utility and internal access code between these crates.
10pub use fdf_channel::arena::*;
11pub use fdf_channel::channel::*;
12pub use fdf_channel::message::*;
13pub use fdf_core::dispatcher::*;
14pub use fdf_core::handle::*;