fidl_next_protocol/
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//! FIDL protocols.
6
7#![deny(
8    future_incompatible,
9    missing_docs,
10    nonstandard_style,
11    unused,
12    warnings,
13    clippy::all,
14    clippy::alloc_instead_of_core,
15    clippy::missing_safety_doc,
16    clippy::std_instead_of_core,
17    // TODO: re-enable this lint after justifying unsafe blocks
18    // clippy::undocumented_unsafe_blocks,
19    rustdoc::broken_intra_doc_links,
20    rustdoc::missing_crate_level_docs
21)]
22#![forbid(unsafe_op_in_unsafe_fn)]
23
24mod buffer;
25mod client;
26mod error;
27mod flexible;
28mod flexible_result;
29mod framework_error;
30#[cfg(target_os = "fuchsia")]
31pub mod fuchsia;
32mod lockers;
33pub mod mpsc;
34mod server;
35mod service;
36#[cfg(test)]
37mod testing;
38mod transport;
39mod wire;
40
41pub use self::buffer::*;
42pub use self::client::*;
43pub use self::error::*;
44pub use self::flexible::*;
45pub use self::flexible_result::*;
46pub use self::framework_error::*;
47pub use self::server::*;
48pub use self::service::*;
49pub use self::transport::*;
50pub use self::wire::*;