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