fidl_data_zither_resources/resources.rs
1// Copyright 2022 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// DO NOT EDIT.
6// Generated from FIDL library `zither.resources` by zither, a Fuchsia platform tool.
7
8#![allow(unused_imports)]
9
10use zerocopy::{FromBytes, IntoBytes};
11
12#[repr(u32)]
13#[derive(Clone, Copy, Debug, Eq, IntoBytes, PartialEq)]
14pub enum Subtype {
15 A = 0,
16 B = 1,
17}
18
19/// This is a handle.
20pub type Handle = u32;
21
22#[repr(C)]
23#[derive(Clone, Copy, Debug, Eq, FromBytes, IntoBytes, PartialEq)]
24pub struct StructWithHandleMembers {
25 pub untyped_handle: Handle,
26 pub handle_a: Handle,
27 pub handle_b: Handle,
28}