fidl_fuchsia_services_test__common/
fidl_fuchsia_services_test__common.rs1#![warn(clippy::all)]
4#![allow(unused_parens, unused_mut, unused_imports, nonstandard_style)]
5
6use bitflags::bitflags;
7use fidl::encoding::{MessageBufFor, ProxyChannelBox, ResourceDialect};
8use futures::future::{self, MaybeDone, TryFutureExt};
9use zx_status;
10
11pub mod control_plane_ordinals {
12 pub const CONTROL_DO: u64 = 0x668f0515ba2e1ebc;
13}
14
15pub mod data_plane_ordinals {
16 pub const DATA_DO: u64 = 0x1c8c82496b32e147;
17}
18
19mod internal {
20 use super::*;
21}