wlan_fidl_ext/
lib.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
5pub mod responder_ext;
6pub mod send_result_ext;
7pub mod try_unpack;
8
9pub use crate::responder_ext::ResponderExt;
10pub use crate::send_result_ext::SendResultExt;
11pub use crate::try_unpack::{TryUnpack, WithName};
12
13#[doc(hidden)]
14pub use paste::paste as __paste;
15
16#[cfg(test)]
17mod tests;