fidl_cf_sc_internal_scenemanagerstructuredconfig_common/
fidl_cf_sc_internal_scenemanagerstructuredconfig_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(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
12pub struct Config {
13 pub attach_a11y_view: bool,
14 pub display_pixel_density: String,
15 pub display_rotation: u64,
16 pub idle_threshold_ms: u64,
17 pub supported_input_devices: Vec<String>,
18 pub suspend_enabled: bool,
19 pub viewing_distance: String,
20}
21
22impl fidl::Persistable for Config {}
23
24mod internal {
25 use super::*;
26
27 impl fidl::encoding::ValueTypeMarker for Config {
28 type Borrowed<'a> = &'a Self;
29 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
30 value
31 }
32 }
33
34 unsafe impl fidl::encoding::TypeMarker for Config {
35 type Owned = Self;
36
37 #[inline(always)]
38 fn inline_align(_context: fidl::encoding::Context) -> usize {
39 8
40 }
41
42 #[inline(always)]
43 fn inline_size(_context: fidl::encoding::Context) -> usize {
44 80
45 }
46 }
47
48 unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Config, D> for &Config {
49 #[inline]
50 unsafe fn encode(
51 self,
52 encoder: &mut fidl::encoding::Encoder<'_, D>,
53 offset: usize,
54 _depth: fidl::encoding::Depth,
55 ) -> fidl::Result<()> {
56 encoder.debug_check_bounds::<Config>(offset);
57 fidl::encoding::Encode::<Config, D>::encode(
59 (
60 <bool as fidl::encoding::ValueTypeMarker>::borrow(&self.attach_a11y_view),
61 <fidl::encoding::BoundedString<8> as fidl::encoding::ValueTypeMarker>::borrow(&self.display_pixel_density),
62 <u64 as fidl::encoding::ValueTypeMarker>::borrow(&self.display_rotation),
63 <u64 as fidl::encoding::ValueTypeMarker>::borrow(&self.idle_threshold_ms),
64 <fidl::encoding::Vector<fidl::encoding::BoundedString<12>, 6> as fidl::encoding::ValueTypeMarker>::borrow(&self.supported_input_devices),
65 <bool as fidl::encoding::ValueTypeMarker>::borrow(&self.suspend_enabled),
66 <fidl::encoding::BoundedString<8> as fidl::encoding::ValueTypeMarker>::borrow(&self.viewing_distance),
67 ),
68 encoder, offset, _depth
69 )
70 }
71 }
72 unsafe impl<
73 D: fidl::encoding::ResourceDialect,
74 T0: fidl::encoding::Encode<bool, D>,
75 T1: fidl::encoding::Encode<fidl::encoding::BoundedString<8>, D>,
76 T2: fidl::encoding::Encode<u64, D>,
77 T3: fidl::encoding::Encode<u64, D>,
78 T4: fidl::encoding::Encode<fidl::encoding::Vector<fidl::encoding::BoundedString<12>, 6>, D>,
79 T5: fidl::encoding::Encode<bool, D>,
80 T6: fidl::encoding::Encode<fidl::encoding::BoundedString<8>, D>,
81 > fidl::encoding::Encode<Config, D> for (T0, T1, T2, T3, T4, T5, T6)
82 {
83 #[inline]
84 unsafe fn encode(
85 self,
86 encoder: &mut fidl::encoding::Encoder<'_, D>,
87 offset: usize,
88 depth: fidl::encoding::Depth,
89 ) -> fidl::Result<()> {
90 encoder.debug_check_bounds::<Config>(offset);
91 unsafe {
94 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(0);
95 (ptr as *mut u64).write_unaligned(0);
96 }
97 unsafe {
98 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(56);
99 (ptr as *mut u64).write_unaligned(0);
100 }
101 self.0.encode(encoder, offset + 0, depth)?;
103 self.1.encode(encoder, offset + 8, depth)?;
104 self.2.encode(encoder, offset + 24, depth)?;
105 self.3.encode(encoder, offset + 32, depth)?;
106 self.4.encode(encoder, offset + 40, depth)?;
107 self.5.encode(encoder, offset + 56, depth)?;
108 self.6.encode(encoder, offset + 64, depth)?;
109 Ok(())
110 }
111 }
112
113 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for Config {
114 #[inline(always)]
115 fn new_empty() -> Self {
116 Self {
117 attach_a11y_view: fidl::new_empty!(bool, D),
118 display_pixel_density: fidl::new_empty!(fidl::encoding::BoundedString<8>, D),
119 display_rotation: fidl::new_empty!(u64, D),
120 idle_threshold_ms: fidl::new_empty!(u64, D),
121 supported_input_devices: fidl::new_empty!(
122 fidl::encoding::Vector<fidl::encoding::BoundedString<12>, 6>,
123 D
124 ),
125 suspend_enabled: fidl::new_empty!(bool, D),
126 viewing_distance: fidl::new_empty!(fidl::encoding::BoundedString<8>, D),
127 }
128 }
129
130 #[inline]
131 unsafe fn decode(
132 &mut self,
133 decoder: &mut fidl::encoding::Decoder<'_, D>,
134 offset: usize,
135 _depth: fidl::encoding::Depth,
136 ) -> fidl::Result<()> {
137 decoder.debug_check_bounds::<Self>(offset);
138 let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(0) };
140 let padval = unsafe { (ptr as *const u64).read_unaligned() };
141 let mask = 0xffffffffffffff00u64;
142 let maskedval = padval & mask;
143 if maskedval != 0 {
144 return Err(fidl::Error::NonZeroPadding {
145 padding_start: offset + 0 + ((mask as u64).trailing_zeros() / 8) as usize,
146 });
147 }
148 let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(56) };
149 let padval = unsafe { (ptr as *const u64).read_unaligned() };
150 let mask = 0xffffffffffffff00u64;
151 let maskedval = padval & mask;
152 if maskedval != 0 {
153 return Err(fidl::Error::NonZeroPadding {
154 padding_start: offset + 56 + ((mask as u64).trailing_zeros() / 8) as usize,
155 });
156 }
157 fidl::decode!(bool, D, &mut self.attach_a11y_view, decoder, offset + 0, _depth)?;
158 fidl::decode!(
159 fidl::encoding::BoundedString<8>,
160 D,
161 &mut self.display_pixel_density,
162 decoder,
163 offset + 8,
164 _depth
165 )?;
166 fidl::decode!(u64, D, &mut self.display_rotation, decoder, offset + 24, _depth)?;
167 fidl::decode!(u64, D, &mut self.idle_threshold_ms, decoder, offset + 32, _depth)?;
168 fidl::decode!(
169 fidl::encoding::Vector<fidl::encoding::BoundedString<12>, 6>,
170 D,
171 &mut self.supported_input_devices,
172 decoder,
173 offset + 40,
174 _depth
175 )?;
176 fidl::decode!(bool, D, &mut self.suspend_enabled, decoder, offset + 56, _depth)?;
177 fidl::decode!(
178 fidl::encoding::BoundedString<8>,
179 D,
180 &mut self.viewing_distance,
181 decoder,
182 offset + 64,
183 _depth
184 )?;
185 Ok(())
186 }
187 }
188}