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)]
7
8mod arena;
9mod channel;
10mod dispatcher;
11mod handle;
12mod message;
13
14pub use arena::*;
15pub use channel::*;
16pub use dispatcher::*;
17pub use handle::*;
18pub use message::*;