fidl_test_placeholders_common/
fidl_test_placeholders_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 EchoEchoStringRequest {
13 pub value: Option<String>,
14}
15
16impl fidl::Persistable for EchoEchoStringRequest {}
17
18#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
19pub struct EchoEchoStringResponse {
20 pub response: Option<String>,
21}
22
23impl fidl::Persistable for EchoEchoStringResponse {}
24
25mod internal {
26 use super::*;
27
28 impl fidl::encoding::ValueTypeMarker for EchoEchoStringRequest {
29 type Borrowed<'a> = &'a Self;
30 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
31 value
32 }
33 }
34
35 unsafe impl fidl::encoding::TypeMarker for EchoEchoStringRequest {
36 type Owned = Self;
37
38 #[inline(always)]
39 fn inline_align(_context: fidl::encoding::Context) -> usize {
40 8
41 }
42
43 #[inline(always)]
44 fn inline_size(_context: fidl::encoding::Context) -> usize {
45 16
46 }
47 }
48
49 unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<EchoEchoStringRequest, D>
50 for &EchoEchoStringRequest
51 {
52 #[inline]
53 unsafe fn encode(
54 self,
55 encoder: &mut fidl::encoding::Encoder<'_, D>,
56 offset: usize,
57 _depth: fidl::encoding::Depth,
58 ) -> fidl::Result<()> {
59 encoder.debug_check_bounds::<EchoEchoStringRequest>(offset);
60 fidl::encoding::Encode::<EchoEchoStringRequest, D>::encode(
62 (
63 <fidl::encoding::Optional<fidl::encoding::BoundedString<2048>> as fidl::encoding::ValueTypeMarker>::borrow(&self.value),
64 ),
65 encoder, offset, _depth
66 )
67 }
68 }
69 unsafe impl<
70 D: fidl::encoding::ResourceDialect,
71 T0: fidl::encoding::Encode<
72 fidl::encoding::Optional<fidl::encoding::BoundedString<2048>>,
73 D,
74 >,
75 > fidl::encoding::Encode<EchoEchoStringRequest, D> for (T0,)
76 {
77 #[inline]
78 unsafe fn encode(
79 self,
80 encoder: &mut fidl::encoding::Encoder<'_, D>,
81 offset: usize,
82 depth: fidl::encoding::Depth,
83 ) -> fidl::Result<()> {
84 encoder.debug_check_bounds::<EchoEchoStringRequest>(offset);
85 self.0.encode(encoder, offset + 0, depth)?;
89 Ok(())
90 }
91 }
92
93 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for EchoEchoStringRequest {
94 #[inline(always)]
95 fn new_empty() -> Self {
96 Self {
97 value: fidl::new_empty!(
98 fidl::encoding::Optional<fidl::encoding::BoundedString<2048>>,
99 D
100 ),
101 }
102 }
103
104 #[inline]
105 unsafe fn decode(
106 &mut self,
107 decoder: &mut fidl::encoding::Decoder<'_, D>,
108 offset: usize,
109 _depth: fidl::encoding::Depth,
110 ) -> fidl::Result<()> {
111 decoder.debug_check_bounds::<Self>(offset);
112 fidl::decode!(
114 fidl::encoding::Optional<fidl::encoding::BoundedString<2048>>,
115 D,
116 &mut self.value,
117 decoder,
118 offset + 0,
119 _depth
120 )?;
121 Ok(())
122 }
123 }
124
125 impl fidl::encoding::ValueTypeMarker for EchoEchoStringResponse {
126 type Borrowed<'a> = &'a Self;
127 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
128 value
129 }
130 }
131
132 unsafe impl fidl::encoding::TypeMarker for EchoEchoStringResponse {
133 type Owned = Self;
134
135 #[inline(always)]
136 fn inline_align(_context: fidl::encoding::Context) -> usize {
137 8
138 }
139
140 #[inline(always)]
141 fn inline_size(_context: fidl::encoding::Context) -> usize {
142 16
143 }
144 }
145
146 unsafe impl<D: fidl::encoding::ResourceDialect>
147 fidl::encoding::Encode<EchoEchoStringResponse, D> for &EchoEchoStringResponse
148 {
149 #[inline]
150 unsafe fn encode(
151 self,
152 encoder: &mut fidl::encoding::Encoder<'_, D>,
153 offset: usize,
154 _depth: fidl::encoding::Depth,
155 ) -> fidl::Result<()> {
156 encoder.debug_check_bounds::<EchoEchoStringResponse>(offset);
157 fidl::encoding::Encode::<EchoEchoStringResponse, D>::encode(
159 (
160 <fidl::encoding::Optional<fidl::encoding::BoundedString<2048>> as fidl::encoding::ValueTypeMarker>::borrow(&self.response),
161 ),
162 encoder, offset, _depth
163 )
164 }
165 }
166 unsafe impl<
167 D: fidl::encoding::ResourceDialect,
168 T0: fidl::encoding::Encode<
169 fidl::encoding::Optional<fidl::encoding::BoundedString<2048>>,
170 D,
171 >,
172 > fidl::encoding::Encode<EchoEchoStringResponse, D> for (T0,)
173 {
174 #[inline]
175 unsafe fn encode(
176 self,
177 encoder: &mut fidl::encoding::Encoder<'_, D>,
178 offset: usize,
179 depth: fidl::encoding::Depth,
180 ) -> fidl::Result<()> {
181 encoder.debug_check_bounds::<EchoEchoStringResponse>(offset);
182 self.0.encode(encoder, offset + 0, depth)?;
186 Ok(())
187 }
188 }
189
190 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D>
191 for EchoEchoStringResponse
192 {
193 #[inline(always)]
194 fn new_empty() -> Self {
195 Self {
196 response: fidl::new_empty!(
197 fidl::encoding::Optional<fidl::encoding::BoundedString<2048>>,
198 D
199 ),
200 }
201 }
202
203 #[inline]
204 unsafe fn decode(
205 &mut self,
206 decoder: &mut fidl::encoding::Decoder<'_, D>,
207 offset: usize,
208 _depth: fidl::encoding::Depth,
209 ) -> fidl::Result<()> {
210 decoder.debug_check_bounds::<Self>(offset);
211 fidl::decode!(
213 fidl::encoding::Optional<fidl::encoding::BoundedString<2048>>,
214 D,
215 &mut self.response,
216 decoder,
217 offset + 0,
218 _depth
219 )?;
220 Ok(())
221 }
222 }
223}