fidl_cf_sc_internal_sessionmanagerconfig_common/
fidl_cf_sc_internal_sessionmanagerconfig_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 autolaunch: bool,
14 pub session_url: String,
15 pub suspend_enabled: 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 8
36 }
37
38 #[inline(always)]
39 fn inline_size(_context: fidl::encoding::Context) -> usize {
40 32
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 <bool as fidl::encoding::ValueTypeMarker>::borrow(&self.autolaunch),
57 <fidl::encoding::BoundedString<512> as fidl::encoding::ValueTypeMarker>::borrow(
58 &self.session_url,
59 ),
60 <bool as fidl::encoding::ValueTypeMarker>::borrow(&self.suspend_enabled),
61 ),
62 encoder,
63 offset,
64 _depth,
65 )
66 }
67 }
68 unsafe impl<
69 D: fidl::encoding::ResourceDialect,
70 T0: fidl::encoding::Encode<bool, D>,
71 T1: fidl::encoding::Encode<fidl::encoding::BoundedString<512>, D>,
72 T2: fidl::encoding::Encode<bool, D>,
73 > fidl::encoding::Encode<Config, D> for (T0, T1, T2)
74 {
75 #[inline]
76 unsafe fn encode(
77 self,
78 encoder: &mut fidl::encoding::Encoder<'_, D>,
79 offset: usize,
80 depth: fidl::encoding::Depth,
81 ) -> fidl::Result<()> {
82 encoder.debug_check_bounds::<Config>(offset);
83 unsafe {
86 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(0);
87 (ptr as *mut u64).write_unaligned(0);
88 }
89 unsafe {
90 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(24);
91 (ptr as *mut u64).write_unaligned(0);
92 }
93 self.0.encode(encoder, offset + 0, depth)?;
95 self.1.encode(encoder, offset + 8, depth)?;
96 self.2.encode(encoder, offset + 24, depth)?;
97 Ok(())
98 }
99 }
100
101 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for Config {
102 #[inline(always)]
103 fn new_empty() -> Self {
104 Self {
105 autolaunch: fidl::new_empty!(bool, D),
106 session_url: fidl::new_empty!(fidl::encoding::BoundedString<512>, D),
107 suspend_enabled: fidl::new_empty!(bool, D),
108 }
109 }
110
111 #[inline]
112 unsafe fn decode(
113 &mut self,
114 decoder: &mut fidl::encoding::Decoder<'_, D>,
115 offset: usize,
116 _depth: fidl::encoding::Depth,
117 ) -> fidl::Result<()> {
118 decoder.debug_check_bounds::<Self>(offset);
119 let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(0) };
121 let padval = unsafe { (ptr as *const u64).read_unaligned() };
122 let mask = 0xffffffffffffff00u64;
123 let maskedval = padval & mask;
124 if maskedval != 0 {
125 return Err(fidl::Error::NonZeroPadding {
126 padding_start: offset + 0 + ((mask as u64).trailing_zeros() / 8) as usize,
127 });
128 }
129 let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(24) };
130 let padval = unsafe { (ptr as *const u64).read_unaligned() };
131 let mask = 0xffffffffffffff00u64;
132 let maskedval = padval & mask;
133 if maskedval != 0 {
134 return Err(fidl::Error::NonZeroPadding {
135 padding_start: offset + 24 + ((mask as u64).trailing_zeros() / 8) as usize,
136 });
137 }
138 fidl::decode!(bool, D, &mut self.autolaunch, decoder, offset + 0, _depth)?;
139 fidl::decode!(
140 fidl::encoding::BoundedString<512>,
141 D,
142 &mut self.session_url,
143 decoder,
144 offset + 8,
145 _depth
146 )?;
147 fidl::decode!(bool, D, &mut self.suspend_enabled, decoder, offset + 24, _depth)?;
148 Ok(())
149 }
150 }
151}