fidl_fuchsia_bluetooth_bredr_test_common/
fidl_fuchsia_bluetooth_bredr_test_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, PartialEq)]
12pub struct PeerObserverPeerConnectedRequest {
13 pub peer_id: fidl_fuchsia_bluetooth::PeerId,
14 pub protocol: Vec<fidl_fuchsia_bluetooth_bredr::ProtocolDescriptor>,
15}
16
17impl fidl::Persistable for PeerObserverPeerConnectedRequest {}
18
19#[derive(Clone, Debug, PartialEq)]
20pub struct PeerObserverServiceFoundRequest {
21 pub peer_id: fidl_fuchsia_bluetooth::PeerId,
22 pub protocol: Option<Vec<fidl_fuchsia_bluetooth_bredr::ProtocolDescriptor>>,
23 pub attributes: Vec<fidl_fuchsia_bluetooth_bredr::Attribute>,
24}
25
26impl fidl::Persistable for PeerObserverServiceFoundRequest {}
27
28mod internal {
29 use super::*;
30
31 impl fidl::encoding::ValueTypeMarker for PeerObserverPeerConnectedRequest {
32 type Borrowed<'a> = &'a Self;
33 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
34 value
35 }
36 }
37
38 unsafe impl fidl::encoding::TypeMarker for PeerObserverPeerConnectedRequest {
39 type Owned = Self;
40
41 #[inline(always)]
42 fn inline_align(_context: fidl::encoding::Context) -> usize {
43 8
44 }
45
46 #[inline(always)]
47 fn inline_size(_context: fidl::encoding::Context) -> usize {
48 24
49 }
50 }
51
52 unsafe impl<D: fidl::encoding::ResourceDialect>
53 fidl::encoding::Encode<PeerObserverPeerConnectedRequest, D>
54 for &PeerObserverPeerConnectedRequest
55 {
56 #[inline]
57 unsafe fn encode(
58 self,
59 encoder: &mut fidl::encoding::Encoder<'_, D>,
60 offset: usize,
61 _depth: fidl::encoding::Depth,
62 ) -> fidl::Result<()> {
63 encoder.debug_check_bounds::<PeerObserverPeerConnectedRequest>(offset);
64 fidl::encoding::Encode::<PeerObserverPeerConnectedRequest, D>::encode(
66 (
67 <fidl_fuchsia_bluetooth::PeerId as fidl::encoding::ValueTypeMarker>::borrow(&self.peer_id),
68 <fidl::encoding::Vector<fidl_fuchsia_bluetooth_bredr::ProtocolDescriptor, 255> as fidl::encoding::ValueTypeMarker>::borrow(&self.protocol),
69 ),
70 encoder, offset, _depth
71 )
72 }
73 }
74 unsafe impl<
75 D: fidl::encoding::ResourceDialect,
76 T0: fidl::encoding::Encode<fidl_fuchsia_bluetooth::PeerId, D>,
77 T1: fidl::encoding::Encode<
78 fidl::encoding::Vector<fidl_fuchsia_bluetooth_bredr::ProtocolDescriptor, 255>,
79 D,
80 >,
81 > fidl::encoding::Encode<PeerObserverPeerConnectedRequest, D> for (T0, T1)
82 {
83 #[inline]
84 unsafe fn encode(
85 self,
86 encoder: &mut fidl::encoding::Encoder<'_, D>,
87 offset: usize,
88 depth: fidl::encoding::Depth,
89 ) -> fidl::Result<()> {
90 encoder.debug_check_bounds::<PeerObserverPeerConnectedRequest>(offset);
91 self.0.encode(encoder, offset + 0, depth)?;
95 self.1.encode(encoder, offset + 8, depth)?;
96 Ok(())
97 }
98 }
99
100 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D>
101 for PeerObserverPeerConnectedRequest
102 {
103 #[inline(always)]
104 fn new_empty() -> Self {
105 Self {
106 peer_id: fidl::new_empty!(fidl_fuchsia_bluetooth::PeerId, D),
107 protocol: fidl::new_empty!(fidl::encoding::Vector<fidl_fuchsia_bluetooth_bredr::ProtocolDescriptor, 255>, 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 fidl::decode!(
121 fidl_fuchsia_bluetooth::PeerId,
122 D,
123 &mut self.peer_id,
124 decoder,
125 offset + 0,
126 _depth
127 )?;
128 fidl::decode!(fidl::encoding::Vector<fidl_fuchsia_bluetooth_bredr::ProtocolDescriptor, 255>, D, &mut self.protocol, decoder, offset + 8, _depth)?;
129 Ok(())
130 }
131 }
132
133 impl fidl::encoding::ValueTypeMarker for PeerObserverServiceFoundRequest {
134 type Borrowed<'a> = &'a Self;
135 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
136 value
137 }
138 }
139
140 unsafe impl fidl::encoding::TypeMarker for PeerObserverServiceFoundRequest {
141 type Owned = Self;
142
143 #[inline(always)]
144 fn inline_align(_context: fidl::encoding::Context) -> usize {
145 8
146 }
147
148 #[inline(always)]
149 fn inline_size(_context: fidl::encoding::Context) -> usize {
150 40
151 }
152 }
153
154 unsafe impl<D: fidl::encoding::ResourceDialect>
155 fidl::encoding::Encode<PeerObserverServiceFoundRequest, D>
156 for &PeerObserverServiceFoundRequest
157 {
158 #[inline]
159 unsafe fn encode(
160 self,
161 encoder: &mut fidl::encoding::Encoder<'_, D>,
162 offset: usize,
163 _depth: fidl::encoding::Depth,
164 ) -> fidl::Result<()> {
165 encoder.debug_check_bounds::<PeerObserverServiceFoundRequest>(offset);
166 fidl::encoding::Encode::<PeerObserverServiceFoundRequest, D>::encode(
168 (
169 <fidl_fuchsia_bluetooth::PeerId as fidl::encoding::ValueTypeMarker>::borrow(&self.peer_id),
170 <fidl::encoding::Optional<fidl::encoding::Vector<fidl_fuchsia_bluetooth_bredr::ProtocolDescriptor, 255>> as fidl::encoding::ValueTypeMarker>::borrow(&self.protocol),
171 <fidl::encoding::Vector<fidl_fuchsia_bluetooth_bredr::Attribute, 512> as fidl::encoding::ValueTypeMarker>::borrow(&self.attributes),
172 ),
173 encoder, offset, _depth
174 )
175 }
176 }
177 unsafe impl<
178 D: fidl::encoding::ResourceDialect,
179 T0: fidl::encoding::Encode<fidl_fuchsia_bluetooth::PeerId, D>,
180 T1: fidl::encoding::Encode<
181 fidl::encoding::Optional<
182 fidl::encoding::Vector<fidl_fuchsia_bluetooth_bredr::ProtocolDescriptor, 255>,
183 >,
184 D,
185 >,
186 T2: fidl::encoding::Encode<
187 fidl::encoding::Vector<fidl_fuchsia_bluetooth_bredr::Attribute, 512>,
188 D,
189 >,
190 > fidl::encoding::Encode<PeerObserverServiceFoundRequest, D> for (T0, T1, T2)
191 {
192 #[inline]
193 unsafe fn encode(
194 self,
195 encoder: &mut fidl::encoding::Encoder<'_, D>,
196 offset: usize,
197 depth: fidl::encoding::Depth,
198 ) -> fidl::Result<()> {
199 encoder.debug_check_bounds::<PeerObserverServiceFoundRequest>(offset);
200 self.0.encode(encoder, offset + 0, depth)?;
204 self.1.encode(encoder, offset + 8, depth)?;
205 self.2.encode(encoder, offset + 24, depth)?;
206 Ok(())
207 }
208 }
209
210 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D>
211 for PeerObserverServiceFoundRequest
212 {
213 #[inline(always)]
214 fn new_empty() -> Self {
215 Self {
216 peer_id: fidl::new_empty!(fidl_fuchsia_bluetooth::PeerId, D),
217 protocol: fidl::new_empty!(
218 fidl::encoding::Optional<
219 fidl::encoding::Vector<
220 fidl_fuchsia_bluetooth_bredr::ProtocolDescriptor,
221 255,
222 >,
223 >,
224 D
225 ),
226 attributes: fidl::new_empty!(fidl::encoding::Vector<fidl_fuchsia_bluetooth_bredr::Attribute, 512>, D),
227 }
228 }
229
230 #[inline]
231 unsafe fn decode(
232 &mut self,
233 decoder: &mut fidl::encoding::Decoder<'_, D>,
234 offset: usize,
235 _depth: fidl::encoding::Depth,
236 ) -> fidl::Result<()> {
237 decoder.debug_check_bounds::<Self>(offset);
238 fidl::decode!(
240 fidl_fuchsia_bluetooth::PeerId,
241 D,
242 &mut self.peer_id,
243 decoder,
244 offset + 0,
245 _depth
246 )?;
247 fidl::decode!(
248 fidl::encoding::Optional<
249 fidl::encoding::Vector<fidl_fuchsia_bluetooth_bredr::ProtocolDescriptor, 255>,
250 >,
251 D,
252 &mut self.protocol,
253 decoder,
254 offset + 8,
255 _depth
256 )?;
257 fidl::decode!(fidl::encoding::Vector<fidl_fuchsia_bluetooth_bredr::Attribute, 512>, D, &mut self.attributes, decoder, offset + 24, _depth)?;
258 Ok(())
259 }
260 }
261}