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