fidl_data_zither_aliases/
aliases.rs1#![allow(unused_imports)]
9
10use zerocopy::{FromBytes, IntoBytes};
11
12pub type BoolAlias = bool;
13
14pub type Int8Alias = i8;
15
16pub type Int16Alias = i16;
17
18pub type Int32Alias = i32;
19
20pub type Int64Alias = i64;
21
22pub type Uint8Alias = u8;
23
24pub type Uint16Alias = u16;
25
26pub type Uint32Alias = u32;
27
28pub type Uint64Alias = u64;
29
30pub const CONST_FROM_ALIAS: u8 = 0xff;
33
34#[repr(i16)]
35#[derive(Clone, Copy, Debug, Eq, IntoBytes, PartialEq)]
36pub enum Enum {
37 Member = 0,
38}
39
40pub type EnumAlias = Enum;
41
42#[repr(u16)]
43#[derive(Clone, Copy, Debug, Eq, IntoBytes, PartialEq)]
44pub enum Bits {
45 One = 1,
46}
47
48pub type BitsAlias = Bits;
49
50#[repr(C)]
51#[derive(Clone, Copy, Debug, Eq, PartialEq)]
52pub struct Struct {
53 pub x: u64,
54 pub y: u64,
55 pub e: EnumAlias,
56}
57
58pub type StructAlias = Struct;
59
60pub type ArrayAlias = [u32; 4];
61
62pub type NestedArrayAlias = [[Struct; 8]; 4];
63
64pub type AliasWithOneLineComment = bool;
66
67pub type AliasWithManyLineComment = u8;