fidl_next/wire/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2024 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

mod boxed;
mod envelope;
mod error;
mod ptr;
mod string;
mod table;
mod union;
mod vec;

pub use self::boxed::*;
pub use self::envelope::*;
pub use self::error::*;
pub use self::ptr::*;
pub use self::string::*;
pub use self::table::*;
pub use self::union::*;
pub use self::vec::*;