fidl_inspect_selfprofile_test__common/
fidl_inspect_selfprofile_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 puppet_ordinals {
12 pub const START_PROFILING: u64 = 0x3fdf927c6e4c8c8d;
13 pub const STOP_PROFILING: u64 = 0x23347e09827a7087;
14 pub const RUN_PROFILED_FUNCTION: u64 = 0x679bdcc07c2f7065;
15}
16
17mod internal {
18 use super::*;
19}