fidl_cf_sc_internal_config_common/
fidl_cf_sc_internal_config_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, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
12pub struct Config {
13 pub addend: u8,
14 pub augend: u8,
15 pub do_in_process: bool,
16}
17
18impl fidl::Persistable for Config {}
19
20mod internal {
21 use super::*;
22
23 impl fidl::encoding::ValueTypeMarker for Config {
24 type Borrowed<'a> = &'a Self;
25 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
26 value
27 }
28 }
29
30 unsafe impl fidl::encoding::TypeMarker for Config {
31 type Owned = Self;
32
33 #[inline(always)]
34 fn inline_align(_context: fidl::encoding::Context) -> usize {
35 1
36 }
37
38 #[inline(always)]
39 fn inline_size(_context: fidl::encoding::Context) -> usize {
40 3
41 }
42 }
43
44 unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Config, D> for &Config {
45 #[inline]
46 unsafe fn encode(
47 self,
48 encoder: &mut fidl::encoding::Encoder<'_, D>,
49 offset: usize,
50 _depth: fidl::encoding::Depth,
51 ) -> fidl::Result<()> {
52 encoder.debug_check_bounds::<Config>(offset);
53 fidl::encoding::Encode::<Config, D>::encode(
55 (
56 <u8 as fidl::encoding::ValueTypeMarker>::borrow(&self.addend),
57 <u8 as fidl::encoding::ValueTypeMarker>::borrow(&self.augend),
58 <bool as fidl::encoding::ValueTypeMarker>::borrow(&self.do_in_process),
59 ),
60 encoder,
61 offset,
62 _depth,
63 )
64 }
65 }
66 unsafe impl<
67 D: fidl::encoding::ResourceDialect,
68 T0: fidl::encoding::Encode<u8, D>,
69 T1: fidl::encoding::Encode<u8, D>,
70 T2: fidl::encoding::Encode<bool, D>,
71 > fidl::encoding::Encode<Config, D> for (T0, T1, T2)
72 {
73 #[inline]
74 unsafe fn encode(
75 self,
76 encoder: &mut fidl::encoding::Encoder<'_, D>,
77 offset: usize,
78 depth: fidl::encoding::Depth,
79 ) -> fidl::Result<()> {
80 encoder.debug_check_bounds::<Config>(offset);
81 self.0.encode(encoder, offset + 0, depth)?;
85 self.1.encode(encoder, offset + 1, depth)?;
86 self.2.encode(encoder, offset + 2, depth)?;
87 Ok(())
88 }
89 }
90
91 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for Config {
92 #[inline(always)]
93 fn new_empty() -> Self {
94 Self {
95 addend: fidl::new_empty!(u8, D),
96 augend: fidl::new_empty!(u8, D),
97 do_in_process: fidl::new_empty!(bool, D),
98 }
99 }
100
101 #[inline]
102 unsafe fn decode(
103 &mut self,
104 decoder: &mut fidl::encoding::Decoder<'_, D>,
105 offset: usize,
106 _depth: fidl::encoding::Depth,
107 ) -> fidl::Result<()> {
108 decoder.debug_check_bounds::<Self>(offset);
109 fidl::decode!(u8, D, &mut self.addend, decoder, offset + 0, _depth)?;
111 fidl::decode!(u8, D, &mut self.augend, decoder, offset + 1, _depth)?;
112 fidl::decode!(bool, D, &mut self.do_in_process, decoder, offset + 2, _depth)?;
113 Ok(())
114 }
115 }
116}