fidl_next/wire/mod.rs
// 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::*;