fidl_next_codec/wire/fuchsia/mod.rs
1// Copyright 2024 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//! Fuchsia-specific FIDL wire type definitions and implementations.
6
7mod handle;
8mod handle_types;
9mod object_type;
10mod rights;
11
12pub use self::handle::*;
13pub use self::handle_types::*;
14pub use self::object_type::*;
15pub use self::rights::*;