fidl_fuchsia_input_interaction_common/
fidl_fuchsia_input_interaction_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
11#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
13pub enum State {
14 Invalid,
15 Idle,
18 Active,
27 #[doc(hidden)]
28 __SourceBreaking {
29 unknown_ordinal: u32,
30 },
31}
32
33#[macro_export]
35macro_rules! StateUnknown {
36 () => {
37 _
38 };
39}
40
41impl State {
42 #[inline]
43 pub fn from_primitive(prim: u32) -> Option<Self> {
44 match prim {
45 0 => Some(Self::Invalid),
46 1 => Some(Self::Idle),
47 2 => Some(Self::Active),
48 _ => None,
49 }
50 }
51
52 #[inline]
53 pub fn from_primitive_allow_unknown(prim: u32) -> Self {
54 match prim {
55 0 => Self::Invalid,
56 1 => Self::Idle,
57 2 => Self::Active,
58 unknown_ordinal => Self::__SourceBreaking { unknown_ordinal },
59 }
60 }
61
62 #[inline]
63 pub fn unknown() -> Self {
64 Self::__SourceBreaking { unknown_ordinal: 0xffffffff }
65 }
66
67 #[inline]
68 pub const fn into_primitive(self) -> u32 {
69 match self {
70 Self::Invalid => 0,
71 Self::Idle => 1,
72 Self::Active => 2,
73 Self::__SourceBreaking { unknown_ordinal } => unknown_ordinal,
74 }
75 }
76
77 #[inline]
78 pub fn is_unknown(&self) -> bool {
79 match self {
80 Self::__SourceBreaking { unknown_ordinal: _ } => true,
81 _ => false,
82 }
83 }
84}
85
86mod internal {
87 use super::*;
88 unsafe impl fidl::encoding::TypeMarker for State {
89 type Owned = Self;
90
91 #[inline(always)]
92 fn inline_align(_context: fidl::encoding::Context) -> usize {
93 std::mem::align_of::<u32>()
94 }
95
96 #[inline(always)]
97 fn inline_size(_context: fidl::encoding::Context) -> usize {
98 std::mem::size_of::<u32>()
99 }
100
101 #[inline(always)]
102 fn encode_is_copy() -> bool {
103 false
104 }
105
106 #[inline(always)]
107 fn decode_is_copy() -> bool {
108 false
109 }
110 }
111
112 impl fidl::encoding::ValueTypeMarker for State {
113 type Borrowed<'a> = Self;
114 #[inline(always)]
115 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
116 *value
117 }
118 }
119
120 unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Self, D> for State {
121 #[inline]
122 unsafe fn encode(
123 self,
124 encoder: &mut fidl::encoding::Encoder<'_, D>,
125 offset: usize,
126 _depth: fidl::encoding::Depth,
127 ) -> fidl::Result<()> {
128 encoder.debug_check_bounds::<Self>(offset);
129 encoder.write_num(self.into_primitive(), offset);
130 Ok(())
131 }
132 }
133
134 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for State {
135 #[inline(always)]
136 fn new_empty() -> Self {
137 Self::unknown()
138 }
139
140 #[inline]
141 unsafe fn decode(
142 &mut self,
143 decoder: &mut fidl::encoding::Decoder<'_, D>,
144 offset: usize,
145 _depth: fidl::encoding::Depth,
146 ) -> fidl::Result<()> {
147 decoder.debug_check_bounds::<Self>(offset);
148 let prim = decoder.read_num::<u32>(offset);
149
150 *self = Self::from_primitive_allow_unknown(prim);
151 Ok(())
152 }
153 }
154}