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 message_header;
13mod strict;
14
15pub use self::empty::*;
16pub use self::epitaph::*;
17pub use self::flexible::*;
18pub use self::message_header::*;
19pub use self::strict::*;