fidl_next_codec/wire/mod.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 wire type definitions and implementations.
6
7mod boxed;
8mod empty_struct;
9mod envelope;
10#[cfg(feature = "fuchsia")]
11pub mod fuchsia;
12mod primitives;
13mod ptr;
14mod result;
15mod string;
16mod table;
17mod union;
18mod vec;
19
20pub use self::boxed::*;
21pub use self::empty_struct::*;
22pub use self::envelope::*;
23pub use self::primitives::*;
24pub use self::ptr::*;
25pub use self::result::*;
26pub use self::string::*;
27pub use self::table::*;
28pub use self::union::*;
29pub use self::vec::*;