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 epitaph;
10mod flexible;
11mod flexible_result;
12mod framework_error;
13mod message_header;
14
15pub use self::epitaph::*;
16pub use self::flexible::*;
17pub use self::flexible_result::*;
18pub use self::framework_error::*;
19pub use self::message_header::*;