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
5mod boxed;
6mod envelope;
7mod ptr;
8mod result;
9mod string;
10mod table;
11mod union;
12mod vec;
13
14pub use self::boxed::*;
15pub use self::envelope::*;
16pub use self::ptr::*;
17pub use self::result::*;
18pub use self::string::*;
19pub use self::table::*;
20pub use self::union::*;
21pub use self::vec::*;