1#![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_phone_number_to_voice_tag: bool,
14 pub controller_encoding_cvsd: bool,
15 pub controller_encoding_msbc: bool,
16 pub echo_canceling_and_noise_reduction: bool,
17 pub enhanced_call_controls: bool,
18 pub enhanced_voice_recognition: bool,
19 pub enhanced_voice_recognition_with_text: bool,
20 pub in_band_ringtone: bool,
21 pub offload_type: String,
22 pub reject_incoming_voice_call: bool,
23 pub three_way_calling: bool,
24 pub voice_recognition: bool,
25 pub wide_band_speech: bool,
26}
27
28impl fidl::Persistable for Config {}
29
30mod internal {
31 use super::*;
32
33 impl fidl::encoding::ValueTypeMarker for Config {
34 type Borrowed<'a> = &'a Self;
35 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
36 value
37 }
38 }
39
40 unsafe impl fidl::encoding::TypeMarker for Config {
41 type Owned = Self;
42
43 #[inline(always)]
44 fn inline_align(_context: fidl::encoding::Context) -> usize {
45 8
46 }
47
48 #[inline(always)]
49 fn inline_size(_context: fidl::encoding::Context) -> usize {
50 32
51 }
52 }
53
54 unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Config, D> for &Config {
55 #[inline]
56 unsafe fn encode(
57 self,
58 encoder: &mut fidl::encoding::Encoder<'_, D>,
59 offset: usize,
60 _depth: fidl::encoding::Depth,
61 ) -> fidl::Result<()> {
62 encoder.debug_check_bounds::<Config>(offset);
63 fidl::encoding::Encode::<Config, D>::encode(
65 (
66 <bool as fidl::encoding::ValueTypeMarker>::borrow(
67 &self.attach_phone_number_to_voice_tag,
68 ),
69 <bool as fidl::encoding::ValueTypeMarker>::borrow(
70 &self.controller_encoding_cvsd,
71 ),
72 <bool as fidl::encoding::ValueTypeMarker>::borrow(
73 &self.controller_encoding_msbc,
74 ),
75 <bool as fidl::encoding::ValueTypeMarker>::borrow(
76 &self.echo_canceling_and_noise_reduction,
77 ),
78 <bool as fidl::encoding::ValueTypeMarker>::borrow(&self.enhanced_call_controls),
79 <bool as fidl::encoding::ValueTypeMarker>::borrow(
80 &self.enhanced_voice_recognition,
81 ),
82 <bool as fidl::encoding::ValueTypeMarker>::borrow(
83 &self.enhanced_voice_recognition_with_text,
84 ),
85 <bool as fidl::encoding::ValueTypeMarker>::borrow(&self.in_band_ringtone),
86 <fidl::encoding::BoundedString<8> as fidl::encoding::ValueTypeMarker>::borrow(
87 &self.offload_type,
88 ),
89 <bool as fidl::encoding::ValueTypeMarker>::borrow(
90 &self.reject_incoming_voice_call,
91 ),
92 <bool as fidl::encoding::ValueTypeMarker>::borrow(&self.three_way_calling),
93 <bool as fidl::encoding::ValueTypeMarker>::borrow(&self.voice_recognition),
94 <bool as fidl::encoding::ValueTypeMarker>::borrow(&self.wide_band_speech),
95 ),
96 encoder,
97 offset,
98 _depth,
99 )
100 }
101 }
102 unsafe impl<
103 D: fidl::encoding::ResourceDialect,
104 T0: fidl::encoding::Encode<bool, D>,
105 T1: fidl::encoding::Encode<bool, D>,
106 T2: fidl::encoding::Encode<bool, D>,
107 T3: fidl::encoding::Encode<bool, D>,
108 T4: fidl::encoding::Encode<bool, D>,
109 T5: fidl::encoding::Encode<bool, D>,
110 T6: fidl::encoding::Encode<bool, D>,
111 T7: fidl::encoding::Encode<bool, D>,
112 T8: fidl::encoding::Encode<fidl::encoding::BoundedString<8>, D>,
113 T9: fidl::encoding::Encode<bool, D>,
114 T10: fidl::encoding::Encode<bool, D>,
115 T11: fidl::encoding::Encode<bool, D>,
116 T12: fidl::encoding::Encode<bool, D>,
117 > fidl::encoding::Encode<Config, D>
118 for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)
119 {
120 #[inline]
121 unsafe fn encode(
122 self,
123 encoder: &mut fidl::encoding::Encoder<'_, D>,
124 offset: usize,
125 depth: fidl::encoding::Depth,
126 ) -> fidl::Result<()> {
127 encoder.debug_check_bounds::<Config>(offset);
128 unsafe {
131 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(24);
132 (ptr as *mut u64).write_unaligned(0);
133 }
134 self.0.encode(encoder, offset + 0, depth)?;
136 self.1.encode(encoder, offset + 1, depth)?;
137 self.2.encode(encoder, offset + 2, depth)?;
138 self.3.encode(encoder, offset + 3, depth)?;
139 self.4.encode(encoder, offset + 4, depth)?;
140 self.5.encode(encoder, offset + 5, depth)?;
141 self.6.encode(encoder, offset + 6, depth)?;
142 self.7.encode(encoder, offset + 7, depth)?;
143 self.8.encode(encoder, offset + 8, depth)?;
144 self.9.encode(encoder, offset + 24, depth)?;
145 self.10.encode(encoder, offset + 25, depth)?;
146 self.11.encode(encoder, offset + 26, depth)?;
147 self.12.encode(encoder, offset + 27, depth)?;
148 Ok(())
149 }
150 }
151
152 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for Config {
153 #[inline(always)]
154 fn new_empty() -> Self {
155 Self {
156 attach_phone_number_to_voice_tag: fidl::new_empty!(bool, D),
157 controller_encoding_cvsd: fidl::new_empty!(bool, D),
158 controller_encoding_msbc: fidl::new_empty!(bool, D),
159 echo_canceling_and_noise_reduction: fidl::new_empty!(bool, D),
160 enhanced_call_controls: fidl::new_empty!(bool, D),
161 enhanced_voice_recognition: fidl::new_empty!(bool, D),
162 enhanced_voice_recognition_with_text: fidl::new_empty!(bool, D),
163 in_band_ringtone: fidl::new_empty!(bool, D),
164 offload_type: fidl::new_empty!(fidl::encoding::BoundedString<8>, D),
165 reject_incoming_voice_call: fidl::new_empty!(bool, D),
166 three_way_calling: fidl::new_empty!(bool, D),
167 voice_recognition: fidl::new_empty!(bool, D),
168 wide_band_speech: fidl::new_empty!(bool, D),
169 }
170 }
171
172 #[inline]
173 unsafe fn decode(
174 &mut self,
175 decoder: &mut fidl::encoding::Decoder<'_, D>,
176 offset: usize,
177 _depth: fidl::encoding::Depth,
178 ) -> fidl::Result<()> {
179 decoder.debug_check_bounds::<Self>(offset);
180 let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(24) };
182 let padval = unsafe { (ptr as *const u64).read_unaligned() };
183 let mask = 0xffffffff00000000u64;
184 let maskedval = padval & mask;
185 if maskedval != 0 {
186 return Err(fidl::Error::NonZeroPadding {
187 padding_start: offset + 24 + ((mask as u64).trailing_zeros() / 8) as usize,
188 });
189 }
190 fidl::decode!(
191 bool,
192 D,
193 &mut self.attach_phone_number_to_voice_tag,
194 decoder,
195 offset + 0,
196 _depth
197 )?;
198 fidl::decode!(
199 bool,
200 D,
201 &mut self.controller_encoding_cvsd,
202 decoder,
203 offset + 1,
204 _depth
205 )?;
206 fidl::decode!(
207 bool,
208 D,
209 &mut self.controller_encoding_msbc,
210 decoder,
211 offset + 2,
212 _depth
213 )?;
214 fidl::decode!(
215 bool,
216 D,
217 &mut self.echo_canceling_and_noise_reduction,
218 decoder,
219 offset + 3,
220 _depth
221 )?;
222 fidl::decode!(bool, D, &mut self.enhanced_call_controls, decoder, offset + 4, _depth)?;
223 fidl::decode!(
224 bool,
225 D,
226 &mut self.enhanced_voice_recognition,
227 decoder,
228 offset + 5,
229 _depth
230 )?;
231 fidl::decode!(
232 bool,
233 D,
234 &mut self.enhanced_voice_recognition_with_text,
235 decoder,
236 offset + 6,
237 _depth
238 )?;
239 fidl::decode!(bool, D, &mut self.in_band_ringtone, decoder, offset + 7, _depth)?;
240 fidl::decode!(
241 fidl::encoding::BoundedString<8>,
242 D,
243 &mut self.offload_type,
244 decoder,
245 offset + 8,
246 _depth
247 )?;
248 fidl::decode!(
249 bool,
250 D,
251 &mut self.reject_incoming_voice_call,
252 decoder,
253 offset + 24,
254 _depth
255 )?;
256 fidl::decode!(bool, D, &mut self.three_way_calling, decoder, offset + 25, _depth)?;
257 fidl::decode!(bool, D, &mut self.voice_recognition, decoder, offset + 26, _depth)?;
258 fidl::decode!(bool, D, &mut self.wide_band_speech, decoder, offset + 27, _depth)?;
259 Ok(())
260 }
261 }
262}