fidl_next_protocol/wire/mod.rs
1// Copyright 2026 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 protocol wire type definitions and implementations.
6
7use fidl_next_codec::wire::*;
8
9mod empty;
10mod epitaph;
11mod flexible;
12mod flexible_result;
13mod framework_error;
14mod message_header;
15
16pub use self::empty::*;
17pub use self::epitaph::*;
18pub use self::flexible::*;
19pub use self::flexible_result::*;
20pub use self::framework_error::*;
21pub use self::message_header::*;