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 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::UnboundedString> 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<fidl::encoding::Optional<fidl::encoding::UnboundedString>, D>,
72 > fidl::encoding::Encode<EchoEchoStringRequest, D> for (T0,)
73 {
74 #[inline]
75 unsafe fn encode(
76 self,
77 encoder: &mut fidl::encoding::Encoder<'_, D>,
78 offset: usize,
79 depth: fidl::encoding::Depth,
80 ) -> fidl::Result<()> {
81 encoder.debug_check_bounds::<EchoEchoStringRequest>(offset);
82 self.0.encode(encoder, offset + 0, depth)?;
86 Ok(())
87 }
88 }
89
90 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for EchoEchoStringRequest {
91 #[inline(always)]
92 fn new_empty() -> Self {
93 Self {
94 value: fidl::new_empty!(
95 fidl::encoding::Optional<fidl::encoding::UnboundedString>,
96 D
97 ),
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!(
111 fidl::encoding::Optional<fidl::encoding::UnboundedString>,
112 D,
113 &mut self.value,
114 decoder,
115 offset + 0,
116 _depth
117 )?;
118 Ok(())
119 }
120 }
121
122 impl fidl::encoding::ValueTypeMarker for EchoEchoStringResponse {
123 type Borrowed<'a> = &'a Self;
124 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
125 value
126 }
127 }
128
129 unsafe impl fidl::encoding::TypeMarker for EchoEchoStringResponse {
130 type Owned = Self;
131
132 #[inline(always)]
133 fn inline_align(_context: fidl::encoding::Context) -> usize {
134 8
135 }
136
137 #[inline(always)]
138 fn inline_size(_context: fidl::encoding::Context) -> usize {
139 16
140 }
141 }
142
143 unsafe impl<D: fidl::encoding::ResourceDialect>
144 fidl::encoding::Encode<EchoEchoStringResponse, D> for &EchoEchoStringResponse
145 {
146 #[inline]
147 unsafe fn encode(
148 self,
149 encoder: &mut fidl::encoding::Encoder<'_, D>,
150 offset: usize,
151 _depth: fidl::encoding::Depth,
152 ) -> fidl::Result<()> {
153 encoder.debug_check_bounds::<EchoEchoStringResponse>(offset);
154 fidl::encoding::Encode::<EchoEchoStringResponse, D>::encode(
156 (
157 <fidl::encoding::Optional<fidl::encoding::UnboundedString> as fidl::encoding::ValueTypeMarker>::borrow(&self.response),
158 ),
159 encoder, offset, _depth
160 )
161 }
162 }
163 unsafe impl<
164 D: fidl::encoding::ResourceDialect,
165 T0: fidl::encoding::Encode<fidl::encoding::Optional<fidl::encoding::UnboundedString>, D>,
166 > fidl::encoding::Encode<EchoEchoStringResponse, D> for (T0,)
167 {
168 #[inline]
169 unsafe fn encode(
170 self,
171 encoder: &mut fidl::encoding::Encoder<'_, D>,
172 offset: usize,
173 depth: fidl::encoding::Depth,
174 ) -> fidl::Result<()> {
175 encoder.debug_check_bounds::<EchoEchoStringResponse>(offset);
176 self.0.encode(encoder, offset + 0, depth)?;
180 Ok(())
181 }
182 }
183
184 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D>
185 for EchoEchoStringResponse
186 {
187 #[inline(always)]
188 fn new_empty() -> Self {
189 Self {
190 response: fidl::new_empty!(
191 fidl::encoding::Optional<fidl::encoding::UnboundedString>,
192 D
193 ),
194 }
195 }
196
197 #[inline]
198 unsafe fn decode(
199 &mut self,
200 decoder: &mut fidl::encoding::Decoder<'_, D>,
201 offset: usize,
202 _depth: fidl::encoding::Depth,
203 ) -> fidl::Result<()> {
204 decoder.debug_check_bounds::<Self>(offset);
205 fidl::decode!(
207 fidl::encoding::Optional<fidl::encoding::UnboundedString>,
208 D,
209 &mut self.response,
210 decoder,
211 offset + 0,
212 _depth
213 )?;
214 Ok(())
215 }
216 }
217}