1#![warn(clippy::all)]
4#![allow(unused_parens, unused_mut, unused_imports, nonstandard_style)]
5
6use bitflags::bitflags;
7use fidl::client::QueryResponseFut;
8use fidl::encoding::{MessageBufFor, ProxyChannelBox, ResourceDialect};
9use fidl::endpoints::{ControlHandle as _, Responder as _};
10pub use fidl_fuchsia_bluetooth_avdtp_test_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, PartialEq)]
15pub struct PeerManagerGetPeerRequest {
16 pub peer_id: fidl_fuchsia_bluetooth::PeerId,
17 pub handle: fidl::endpoints::ServerEnd<PeerControllerMarker>,
18}
19
20impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for PeerManagerGetPeerRequest {}
21
22#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
23pub struct PeerControllerMarker;
24
25impl fidl::endpoints::ProtocolMarker for PeerControllerMarker {
26 type Proxy = PeerControllerProxy;
27 type RequestStream = PeerControllerRequestStream;
28 #[cfg(target_os = "fuchsia")]
29 type SynchronousProxy = PeerControllerSynchronousProxy;
30
31 const DEBUG_NAME: &'static str = "(anonymous) PeerController";
32}
33pub type PeerControllerSetConfigurationResult = Result<(), PeerError>;
34pub type PeerControllerGetConfigurationResult = Result<(), PeerError>;
35pub type PeerControllerSuspendStreamResult = Result<(), PeerError>;
36pub type PeerControllerSuspendAndReconfigureResult = Result<(), PeerError>;
37pub type PeerControllerEstablishStreamResult = Result<(), PeerError>;
38pub type PeerControllerReleaseStreamResult = Result<(), PeerError>;
39pub type PeerControllerAbortStreamResult = Result<(), PeerError>;
40pub type PeerControllerStartStreamResult = Result<(), PeerError>;
41pub type PeerControllerReconfigureStreamResult = Result<(), PeerError>;
42pub type PeerControllerGetCapabilitiesResult = Result<(), PeerError>;
43pub type PeerControllerGetAllCapabilitiesResult = Result<(), PeerError>;
44
45pub trait PeerControllerProxyInterface: Send + Sync {
46 type SetConfigurationResponseFut: std::future::Future<Output = Result<PeerControllerSetConfigurationResult, fidl::Error>>
47 + Send;
48 fn r#set_configuration(&self) -> Self::SetConfigurationResponseFut;
49 type GetConfigurationResponseFut: std::future::Future<Output = Result<PeerControllerGetConfigurationResult, fidl::Error>>
50 + Send;
51 fn r#get_configuration(&self) -> Self::GetConfigurationResponseFut;
52 type SuspendStreamResponseFut: std::future::Future<Output = Result<PeerControllerSuspendStreamResult, fidl::Error>>
53 + Send;
54 fn r#suspend_stream(&self) -> Self::SuspendStreamResponseFut;
55 type SuspendAndReconfigureResponseFut: std::future::Future<Output = Result<PeerControllerSuspendAndReconfigureResult, fidl::Error>>
56 + Send;
57 fn r#suspend_and_reconfigure(&self) -> Self::SuspendAndReconfigureResponseFut;
58 type EstablishStreamResponseFut: std::future::Future<Output = Result<PeerControllerEstablishStreamResult, fidl::Error>>
59 + Send;
60 fn r#establish_stream(&self) -> Self::EstablishStreamResponseFut;
61 type ReleaseStreamResponseFut: std::future::Future<Output = Result<PeerControllerReleaseStreamResult, fidl::Error>>
62 + Send;
63 fn r#release_stream(&self) -> Self::ReleaseStreamResponseFut;
64 type AbortStreamResponseFut: std::future::Future<Output = Result<PeerControllerAbortStreamResult, fidl::Error>>
65 + Send;
66 fn r#abort_stream(&self) -> Self::AbortStreamResponseFut;
67 type StartStreamResponseFut: std::future::Future<Output = Result<PeerControllerStartStreamResult, fidl::Error>>
68 + Send;
69 fn r#start_stream(&self) -> Self::StartStreamResponseFut;
70 type ReconfigureStreamResponseFut: std::future::Future<Output = Result<PeerControllerReconfigureStreamResult, fidl::Error>>
71 + Send;
72 fn r#reconfigure_stream(&self) -> Self::ReconfigureStreamResponseFut;
73 type GetCapabilitiesResponseFut: std::future::Future<Output = Result<PeerControllerGetCapabilitiesResult, fidl::Error>>
74 + Send;
75 fn r#get_capabilities(&self) -> Self::GetCapabilitiesResponseFut;
76 type GetAllCapabilitiesResponseFut: std::future::Future<Output = Result<PeerControllerGetAllCapabilitiesResult, fidl::Error>>
77 + Send;
78 fn r#get_all_capabilities(&self) -> Self::GetAllCapabilitiesResponseFut;
79}
80#[derive(Debug)]
81#[cfg(target_os = "fuchsia")]
82pub struct PeerControllerSynchronousProxy {
83 client: fidl::client::sync::Client,
84}
85
86#[cfg(target_os = "fuchsia")]
87impl fidl::endpoints::SynchronousProxy for PeerControllerSynchronousProxy {
88 type Proxy = PeerControllerProxy;
89 type Protocol = PeerControllerMarker;
90
91 fn from_channel(inner: fidl::Channel) -> Self {
92 Self::new(inner)
93 }
94
95 fn into_channel(self) -> fidl::Channel {
96 self.client.into_channel()
97 }
98
99 fn as_channel(&self) -> &fidl::Channel {
100 self.client.as_channel()
101 }
102}
103
104#[cfg(target_os = "fuchsia")]
105impl PeerControllerSynchronousProxy {
106 pub fn new(channel: fidl::Channel) -> Self {
107 let protocol_name = <PeerControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
108 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
109 }
110
111 pub fn into_channel(self) -> fidl::Channel {
112 self.client.into_channel()
113 }
114
115 pub fn wait_for_event(
118 &self,
119 deadline: zx::MonotonicInstant,
120 ) -> Result<PeerControllerEvent, fidl::Error> {
121 PeerControllerEvent::decode(self.client.wait_for_event(deadline)?)
122 }
123
124 pub fn r#set_configuration(
128 &self,
129 ___deadline: zx::MonotonicInstant,
130 ) -> Result<PeerControllerSetConfigurationResult, fidl::Error> {
131 let _response = self.client.send_query::<
132 fidl::encoding::EmptyPayload,
133 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
134 >(
135 (),
136 0x35f45144acf701ae,
137 fidl::encoding::DynamicFlags::empty(),
138 ___deadline,
139 )?;
140 Ok(_response.map(|x| x))
141 }
142
143 pub fn r#get_configuration(
146 &self,
147 ___deadline: zx::MonotonicInstant,
148 ) -> Result<PeerControllerGetConfigurationResult, fidl::Error> {
149 let _response = self.client.send_query::<
150 fidl::encoding::EmptyPayload,
151 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
152 >(
153 (),
154 0x507eb0483e8d50d,
155 fidl::encoding::DynamicFlags::empty(),
156 ___deadline,
157 )?;
158 Ok(_response.map(|x| x))
159 }
160
161 pub fn r#suspend_stream(
164 &self,
165 ___deadline: zx::MonotonicInstant,
166 ) -> Result<PeerControllerSuspendStreamResult, fidl::Error> {
167 let _response = self.client.send_query::<
168 fidl::encoding::EmptyPayload,
169 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
170 >(
171 (),
172 0x43465c9341d472eb,
173 fidl::encoding::DynamicFlags::empty(),
174 ___deadline,
175 )?;
176 Ok(_response.map(|x| x))
177 }
178
179 pub fn r#suspend_and_reconfigure(
183 &self,
184 ___deadline: zx::MonotonicInstant,
185 ) -> Result<PeerControllerSuspendAndReconfigureResult, fidl::Error> {
186 let _response = self.client.send_query::<
187 fidl::encoding::EmptyPayload,
188 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
189 >(
190 (),
191 0x7ce8e3b693e20fe3,
192 fidl::encoding::DynamicFlags::empty(),
193 ___deadline,
194 )?;
195 Ok(_response.map(|x| x))
196 }
197
198 pub fn r#establish_stream(
200 &self,
201 ___deadline: zx::MonotonicInstant,
202 ) -> Result<PeerControllerEstablishStreamResult, fidl::Error> {
203 let _response = self.client.send_query::<
204 fidl::encoding::EmptyPayload,
205 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
206 >(
207 (),
208 0x438e16ccd91eb5e5,
209 fidl::encoding::DynamicFlags::empty(),
210 ___deadline,
211 )?;
212 Ok(_response.map(|x| x))
213 }
214
215 pub fn r#release_stream(
218 &self,
219 ___deadline: zx::MonotonicInstant,
220 ) -> Result<PeerControllerReleaseStreamResult, fidl::Error> {
221 let _response = self.client.send_query::<
222 fidl::encoding::EmptyPayload,
223 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
224 >(
225 (),
226 0x4884104b373151c6,
227 fidl::encoding::DynamicFlags::empty(),
228 ___deadline,
229 )?;
230 Ok(_response.map(|x| x))
231 }
232
233 pub fn r#abort_stream(
236 &self,
237 ___deadline: zx::MonotonicInstant,
238 ) -> Result<PeerControllerAbortStreamResult, fidl::Error> {
239 let _response = self.client.send_query::<
240 fidl::encoding::EmptyPayload,
241 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
242 >(
243 (),
244 0xf85b067ed144997,
245 fidl::encoding::DynamicFlags::empty(),
246 ___deadline,
247 )?;
248 Ok(_response.map(|x| x))
249 }
250
251 pub fn r#start_stream(
254 &self,
255 ___deadline: zx::MonotonicInstant,
256 ) -> Result<PeerControllerStartStreamResult, fidl::Error> {
257 let _response = self.client.send_query::<
258 fidl::encoding::EmptyPayload,
259 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
260 >(
261 (),
262 0xd0ead9aec2ebf77,
263 fidl::encoding::DynamicFlags::empty(),
264 ___deadline,
265 )?;
266 Ok(_response.map(|x| x))
267 }
268
269 pub fn r#reconfigure_stream(
273 &self,
274 ___deadline: zx::MonotonicInstant,
275 ) -> Result<PeerControllerReconfigureStreamResult, fidl::Error> {
276 let _response = self.client.send_query::<
277 fidl::encoding::EmptyPayload,
278 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
279 >(
280 (),
281 0x559404d6a9629c60,
282 fidl::encoding::DynamicFlags::empty(),
283 ___deadline,
284 )?;
285 Ok(_response.map(|x| x))
286 }
287
288 pub fn r#get_capabilities(
291 &self,
292 ___deadline: zx::MonotonicInstant,
293 ) -> Result<PeerControllerGetCapabilitiesResult, fidl::Error> {
294 let _response = self.client.send_query::<
295 fidl::encoding::EmptyPayload,
296 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
297 >(
298 (),
299 0x16884c07e6d969a7,
300 fidl::encoding::DynamicFlags::empty(),
301 ___deadline,
302 )?;
303 Ok(_response.map(|x| x))
304 }
305
306 pub fn r#get_all_capabilities(
309 &self,
310 ___deadline: zx::MonotonicInstant,
311 ) -> Result<PeerControllerGetAllCapabilitiesResult, fidl::Error> {
312 let _response = self.client.send_query::<
313 fidl::encoding::EmptyPayload,
314 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
315 >(
316 (),
317 0x1e2c5b438e288cea,
318 fidl::encoding::DynamicFlags::empty(),
319 ___deadline,
320 )?;
321 Ok(_response.map(|x| x))
322 }
323}
324
325#[cfg(target_os = "fuchsia")]
326impl From<PeerControllerSynchronousProxy> for zx::Handle {
327 fn from(value: PeerControllerSynchronousProxy) -> Self {
328 value.into_channel().into()
329 }
330}
331
332#[cfg(target_os = "fuchsia")]
333impl From<fidl::Channel> for PeerControllerSynchronousProxy {
334 fn from(value: fidl::Channel) -> Self {
335 Self::new(value)
336 }
337}
338
339#[derive(Debug, Clone)]
340pub struct PeerControllerProxy {
341 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
342}
343
344impl fidl::endpoints::Proxy for PeerControllerProxy {
345 type Protocol = PeerControllerMarker;
346
347 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
348 Self::new(inner)
349 }
350
351 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
352 self.client.into_channel().map_err(|client| Self { client })
353 }
354
355 fn as_channel(&self) -> &::fidl::AsyncChannel {
356 self.client.as_channel()
357 }
358}
359
360impl PeerControllerProxy {
361 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
363 let protocol_name = <PeerControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
364 Self { client: fidl::client::Client::new(channel, protocol_name) }
365 }
366
367 pub fn take_event_stream(&self) -> PeerControllerEventStream {
373 PeerControllerEventStream { event_receiver: self.client.take_event_receiver() }
374 }
375
376 pub fn r#set_configuration(
380 &self,
381 ) -> fidl::client::QueryResponseFut<
382 PeerControllerSetConfigurationResult,
383 fidl::encoding::DefaultFuchsiaResourceDialect,
384 > {
385 PeerControllerProxyInterface::r#set_configuration(self)
386 }
387
388 pub fn r#get_configuration(
391 &self,
392 ) -> fidl::client::QueryResponseFut<
393 PeerControllerGetConfigurationResult,
394 fidl::encoding::DefaultFuchsiaResourceDialect,
395 > {
396 PeerControllerProxyInterface::r#get_configuration(self)
397 }
398
399 pub fn r#suspend_stream(
402 &self,
403 ) -> fidl::client::QueryResponseFut<
404 PeerControllerSuspendStreamResult,
405 fidl::encoding::DefaultFuchsiaResourceDialect,
406 > {
407 PeerControllerProxyInterface::r#suspend_stream(self)
408 }
409
410 pub fn r#suspend_and_reconfigure(
414 &self,
415 ) -> fidl::client::QueryResponseFut<
416 PeerControllerSuspendAndReconfigureResult,
417 fidl::encoding::DefaultFuchsiaResourceDialect,
418 > {
419 PeerControllerProxyInterface::r#suspend_and_reconfigure(self)
420 }
421
422 pub fn r#establish_stream(
424 &self,
425 ) -> fidl::client::QueryResponseFut<
426 PeerControllerEstablishStreamResult,
427 fidl::encoding::DefaultFuchsiaResourceDialect,
428 > {
429 PeerControllerProxyInterface::r#establish_stream(self)
430 }
431
432 pub fn r#release_stream(
435 &self,
436 ) -> fidl::client::QueryResponseFut<
437 PeerControllerReleaseStreamResult,
438 fidl::encoding::DefaultFuchsiaResourceDialect,
439 > {
440 PeerControllerProxyInterface::r#release_stream(self)
441 }
442
443 pub fn r#abort_stream(
446 &self,
447 ) -> fidl::client::QueryResponseFut<
448 PeerControllerAbortStreamResult,
449 fidl::encoding::DefaultFuchsiaResourceDialect,
450 > {
451 PeerControllerProxyInterface::r#abort_stream(self)
452 }
453
454 pub fn r#start_stream(
457 &self,
458 ) -> fidl::client::QueryResponseFut<
459 PeerControllerStartStreamResult,
460 fidl::encoding::DefaultFuchsiaResourceDialect,
461 > {
462 PeerControllerProxyInterface::r#start_stream(self)
463 }
464
465 pub fn r#reconfigure_stream(
469 &self,
470 ) -> fidl::client::QueryResponseFut<
471 PeerControllerReconfigureStreamResult,
472 fidl::encoding::DefaultFuchsiaResourceDialect,
473 > {
474 PeerControllerProxyInterface::r#reconfigure_stream(self)
475 }
476
477 pub fn r#get_capabilities(
480 &self,
481 ) -> fidl::client::QueryResponseFut<
482 PeerControllerGetCapabilitiesResult,
483 fidl::encoding::DefaultFuchsiaResourceDialect,
484 > {
485 PeerControllerProxyInterface::r#get_capabilities(self)
486 }
487
488 pub fn r#get_all_capabilities(
491 &self,
492 ) -> fidl::client::QueryResponseFut<
493 PeerControllerGetAllCapabilitiesResult,
494 fidl::encoding::DefaultFuchsiaResourceDialect,
495 > {
496 PeerControllerProxyInterface::r#get_all_capabilities(self)
497 }
498}
499
500impl PeerControllerProxyInterface for PeerControllerProxy {
501 type SetConfigurationResponseFut = fidl::client::QueryResponseFut<
502 PeerControllerSetConfigurationResult,
503 fidl::encoding::DefaultFuchsiaResourceDialect,
504 >;
505 fn r#set_configuration(&self) -> Self::SetConfigurationResponseFut {
506 fn _decode(
507 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
508 ) -> Result<PeerControllerSetConfigurationResult, fidl::Error> {
509 let _response = fidl::client::decode_transaction_body::<
510 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
511 fidl::encoding::DefaultFuchsiaResourceDialect,
512 0x35f45144acf701ae,
513 >(_buf?)?;
514 Ok(_response.map(|x| x))
515 }
516 self.client.send_query_and_decode::<
517 fidl::encoding::EmptyPayload,
518 PeerControllerSetConfigurationResult,
519 >(
520 (),
521 0x35f45144acf701ae,
522 fidl::encoding::DynamicFlags::empty(),
523 _decode,
524 )
525 }
526
527 type GetConfigurationResponseFut = fidl::client::QueryResponseFut<
528 PeerControllerGetConfigurationResult,
529 fidl::encoding::DefaultFuchsiaResourceDialect,
530 >;
531 fn r#get_configuration(&self) -> Self::GetConfigurationResponseFut {
532 fn _decode(
533 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
534 ) -> Result<PeerControllerGetConfigurationResult, fidl::Error> {
535 let _response = fidl::client::decode_transaction_body::<
536 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
537 fidl::encoding::DefaultFuchsiaResourceDialect,
538 0x507eb0483e8d50d,
539 >(_buf?)?;
540 Ok(_response.map(|x| x))
541 }
542 self.client.send_query_and_decode::<
543 fidl::encoding::EmptyPayload,
544 PeerControllerGetConfigurationResult,
545 >(
546 (),
547 0x507eb0483e8d50d,
548 fidl::encoding::DynamicFlags::empty(),
549 _decode,
550 )
551 }
552
553 type SuspendStreamResponseFut = fidl::client::QueryResponseFut<
554 PeerControllerSuspendStreamResult,
555 fidl::encoding::DefaultFuchsiaResourceDialect,
556 >;
557 fn r#suspend_stream(&self) -> Self::SuspendStreamResponseFut {
558 fn _decode(
559 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
560 ) -> Result<PeerControllerSuspendStreamResult, fidl::Error> {
561 let _response = fidl::client::decode_transaction_body::<
562 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
563 fidl::encoding::DefaultFuchsiaResourceDialect,
564 0x43465c9341d472eb,
565 >(_buf?)?;
566 Ok(_response.map(|x| x))
567 }
568 self.client.send_query_and_decode::<
569 fidl::encoding::EmptyPayload,
570 PeerControllerSuspendStreamResult,
571 >(
572 (),
573 0x43465c9341d472eb,
574 fidl::encoding::DynamicFlags::empty(),
575 _decode,
576 )
577 }
578
579 type SuspendAndReconfigureResponseFut = fidl::client::QueryResponseFut<
580 PeerControllerSuspendAndReconfigureResult,
581 fidl::encoding::DefaultFuchsiaResourceDialect,
582 >;
583 fn r#suspend_and_reconfigure(&self) -> Self::SuspendAndReconfigureResponseFut {
584 fn _decode(
585 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
586 ) -> Result<PeerControllerSuspendAndReconfigureResult, fidl::Error> {
587 let _response = fidl::client::decode_transaction_body::<
588 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
589 fidl::encoding::DefaultFuchsiaResourceDialect,
590 0x7ce8e3b693e20fe3,
591 >(_buf?)?;
592 Ok(_response.map(|x| x))
593 }
594 self.client.send_query_and_decode::<
595 fidl::encoding::EmptyPayload,
596 PeerControllerSuspendAndReconfigureResult,
597 >(
598 (),
599 0x7ce8e3b693e20fe3,
600 fidl::encoding::DynamicFlags::empty(),
601 _decode,
602 )
603 }
604
605 type EstablishStreamResponseFut = fidl::client::QueryResponseFut<
606 PeerControllerEstablishStreamResult,
607 fidl::encoding::DefaultFuchsiaResourceDialect,
608 >;
609 fn r#establish_stream(&self) -> Self::EstablishStreamResponseFut {
610 fn _decode(
611 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
612 ) -> Result<PeerControllerEstablishStreamResult, fidl::Error> {
613 let _response = fidl::client::decode_transaction_body::<
614 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
615 fidl::encoding::DefaultFuchsiaResourceDialect,
616 0x438e16ccd91eb5e5,
617 >(_buf?)?;
618 Ok(_response.map(|x| x))
619 }
620 self.client.send_query_and_decode::<
621 fidl::encoding::EmptyPayload,
622 PeerControllerEstablishStreamResult,
623 >(
624 (),
625 0x438e16ccd91eb5e5,
626 fidl::encoding::DynamicFlags::empty(),
627 _decode,
628 )
629 }
630
631 type ReleaseStreamResponseFut = fidl::client::QueryResponseFut<
632 PeerControllerReleaseStreamResult,
633 fidl::encoding::DefaultFuchsiaResourceDialect,
634 >;
635 fn r#release_stream(&self) -> Self::ReleaseStreamResponseFut {
636 fn _decode(
637 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
638 ) -> Result<PeerControllerReleaseStreamResult, fidl::Error> {
639 let _response = fidl::client::decode_transaction_body::<
640 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
641 fidl::encoding::DefaultFuchsiaResourceDialect,
642 0x4884104b373151c6,
643 >(_buf?)?;
644 Ok(_response.map(|x| x))
645 }
646 self.client.send_query_and_decode::<
647 fidl::encoding::EmptyPayload,
648 PeerControllerReleaseStreamResult,
649 >(
650 (),
651 0x4884104b373151c6,
652 fidl::encoding::DynamicFlags::empty(),
653 _decode,
654 )
655 }
656
657 type AbortStreamResponseFut = fidl::client::QueryResponseFut<
658 PeerControllerAbortStreamResult,
659 fidl::encoding::DefaultFuchsiaResourceDialect,
660 >;
661 fn r#abort_stream(&self) -> Self::AbortStreamResponseFut {
662 fn _decode(
663 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
664 ) -> Result<PeerControllerAbortStreamResult, fidl::Error> {
665 let _response = fidl::client::decode_transaction_body::<
666 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
667 fidl::encoding::DefaultFuchsiaResourceDialect,
668 0xf85b067ed144997,
669 >(_buf?)?;
670 Ok(_response.map(|x| x))
671 }
672 self.client
673 .send_query_and_decode::<fidl::encoding::EmptyPayload, PeerControllerAbortStreamResult>(
674 (),
675 0xf85b067ed144997,
676 fidl::encoding::DynamicFlags::empty(),
677 _decode,
678 )
679 }
680
681 type StartStreamResponseFut = fidl::client::QueryResponseFut<
682 PeerControllerStartStreamResult,
683 fidl::encoding::DefaultFuchsiaResourceDialect,
684 >;
685 fn r#start_stream(&self) -> Self::StartStreamResponseFut {
686 fn _decode(
687 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
688 ) -> Result<PeerControllerStartStreamResult, fidl::Error> {
689 let _response = fidl::client::decode_transaction_body::<
690 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
691 fidl::encoding::DefaultFuchsiaResourceDialect,
692 0xd0ead9aec2ebf77,
693 >(_buf?)?;
694 Ok(_response.map(|x| x))
695 }
696 self.client
697 .send_query_and_decode::<fidl::encoding::EmptyPayload, PeerControllerStartStreamResult>(
698 (),
699 0xd0ead9aec2ebf77,
700 fidl::encoding::DynamicFlags::empty(),
701 _decode,
702 )
703 }
704
705 type ReconfigureStreamResponseFut = fidl::client::QueryResponseFut<
706 PeerControllerReconfigureStreamResult,
707 fidl::encoding::DefaultFuchsiaResourceDialect,
708 >;
709 fn r#reconfigure_stream(&self) -> Self::ReconfigureStreamResponseFut {
710 fn _decode(
711 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
712 ) -> Result<PeerControllerReconfigureStreamResult, fidl::Error> {
713 let _response = fidl::client::decode_transaction_body::<
714 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
715 fidl::encoding::DefaultFuchsiaResourceDialect,
716 0x559404d6a9629c60,
717 >(_buf?)?;
718 Ok(_response.map(|x| x))
719 }
720 self.client.send_query_and_decode::<
721 fidl::encoding::EmptyPayload,
722 PeerControllerReconfigureStreamResult,
723 >(
724 (),
725 0x559404d6a9629c60,
726 fidl::encoding::DynamicFlags::empty(),
727 _decode,
728 )
729 }
730
731 type GetCapabilitiesResponseFut = fidl::client::QueryResponseFut<
732 PeerControllerGetCapabilitiesResult,
733 fidl::encoding::DefaultFuchsiaResourceDialect,
734 >;
735 fn r#get_capabilities(&self) -> Self::GetCapabilitiesResponseFut {
736 fn _decode(
737 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
738 ) -> Result<PeerControllerGetCapabilitiesResult, fidl::Error> {
739 let _response = fidl::client::decode_transaction_body::<
740 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
741 fidl::encoding::DefaultFuchsiaResourceDialect,
742 0x16884c07e6d969a7,
743 >(_buf?)?;
744 Ok(_response.map(|x| x))
745 }
746 self.client.send_query_and_decode::<
747 fidl::encoding::EmptyPayload,
748 PeerControllerGetCapabilitiesResult,
749 >(
750 (),
751 0x16884c07e6d969a7,
752 fidl::encoding::DynamicFlags::empty(),
753 _decode,
754 )
755 }
756
757 type GetAllCapabilitiesResponseFut = fidl::client::QueryResponseFut<
758 PeerControllerGetAllCapabilitiesResult,
759 fidl::encoding::DefaultFuchsiaResourceDialect,
760 >;
761 fn r#get_all_capabilities(&self) -> Self::GetAllCapabilitiesResponseFut {
762 fn _decode(
763 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
764 ) -> Result<PeerControllerGetAllCapabilitiesResult, fidl::Error> {
765 let _response = fidl::client::decode_transaction_body::<
766 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>,
767 fidl::encoding::DefaultFuchsiaResourceDialect,
768 0x1e2c5b438e288cea,
769 >(_buf?)?;
770 Ok(_response.map(|x| x))
771 }
772 self.client.send_query_and_decode::<
773 fidl::encoding::EmptyPayload,
774 PeerControllerGetAllCapabilitiesResult,
775 >(
776 (),
777 0x1e2c5b438e288cea,
778 fidl::encoding::DynamicFlags::empty(),
779 _decode,
780 )
781 }
782}
783
784pub struct PeerControllerEventStream {
785 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
786}
787
788impl std::marker::Unpin for PeerControllerEventStream {}
789
790impl futures::stream::FusedStream for PeerControllerEventStream {
791 fn is_terminated(&self) -> bool {
792 self.event_receiver.is_terminated()
793 }
794}
795
796impl futures::Stream for PeerControllerEventStream {
797 type Item = Result<PeerControllerEvent, fidl::Error>;
798
799 fn poll_next(
800 mut self: std::pin::Pin<&mut Self>,
801 cx: &mut std::task::Context<'_>,
802 ) -> std::task::Poll<Option<Self::Item>> {
803 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
804 &mut self.event_receiver,
805 cx
806 )?) {
807 Some(buf) => std::task::Poll::Ready(Some(PeerControllerEvent::decode(buf))),
808 None => std::task::Poll::Ready(None),
809 }
810 }
811}
812
813#[derive(Debug)]
814pub enum PeerControllerEvent {}
815
816impl PeerControllerEvent {
817 fn decode(
819 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
820 ) -> Result<PeerControllerEvent, fidl::Error> {
821 let (bytes, _handles) = buf.split_mut();
822 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
823 debug_assert_eq!(tx_header.tx_id, 0);
824 match tx_header.ordinal {
825 _ => Err(fidl::Error::UnknownOrdinal {
826 ordinal: tx_header.ordinal,
827 protocol_name:
828 <PeerControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
829 }),
830 }
831 }
832}
833
834pub struct PeerControllerRequestStream {
836 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
837 is_terminated: bool,
838}
839
840impl std::marker::Unpin for PeerControllerRequestStream {}
841
842impl futures::stream::FusedStream for PeerControllerRequestStream {
843 fn is_terminated(&self) -> bool {
844 self.is_terminated
845 }
846}
847
848impl fidl::endpoints::RequestStream for PeerControllerRequestStream {
849 type Protocol = PeerControllerMarker;
850 type ControlHandle = PeerControllerControlHandle;
851
852 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
853 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
854 }
855
856 fn control_handle(&self) -> Self::ControlHandle {
857 PeerControllerControlHandle { inner: self.inner.clone() }
858 }
859
860 fn into_inner(
861 self,
862 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
863 {
864 (self.inner, self.is_terminated)
865 }
866
867 fn from_inner(
868 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
869 is_terminated: bool,
870 ) -> Self {
871 Self { inner, is_terminated }
872 }
873}
874
875impl futures::Stream for PeerControllerRequestStream {
876 type Item = Result<PeerControllerRequest, fidl::Error>;
877
878 fn poll_next(
879 mut self: std::pin::Pin<&mut Self>,
880 cx: &mut std::task::Context<'_>,
881 ) -> std::task::Poll<Option<Self::Item>> {
882 let this = &mut *self;
883 if this.inner.check_shutdown(cx) {
884 this.is_terminated = true;
885 return std::task::Poll::Ready(None);
886 }
887 if this.is_terminated {
888 panic!("polled PeerControllerRequestStream after completion");
889 }
890 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
891 |bytes, handles| {
892 match this.inner.channel().read_etc(cx, bytes, handles) {
893 std::task::Poll::Ready(Ok(())) => {}
894 std::task::Poll::Pending => return std::task::Poll::Pending,
895 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
896 this.is_terminated = true;
897 return std::task::Poll::Ready(None);
898 }
899 std::task::Poll::Ready(Err(e)) => {
900 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
901 e.into(),
902 ))))
903 }
904 }
905
906 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
908
909 std::task::Poll::Ready(Some(match header.ordinal {
910 0x35f45144acf701ae => {
911 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
912 let mut req = fidl::new_empty!(
913 fidl::encoding::EmptyPayload,
914 fidl::encoding::DefaultFuchsiaResourceDialect
915 );
916 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
917 let control_handle =
918 PeerControllerControlHandle { inner: this.inner.clone() };
919 Ok(PeerControllerRequest::SetConfiguration {
920 responder: PeerControllerSetConfigurationResponder {
921 control_handle: std::mem::ManuallyDrop::new(control_handle),
922 tx_id: header.tx_id,
923 },
924 })
925 }
926 0x507eb0483e8d50d => {
927 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
928 let mut req = fidl::new_empty!(
929 fidl::encoding::EmptyPayload,
930 fidl::encoding::DefaultFuchsiaResourceDialect
931 );
932 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
933 let control_handle =
934 PeerControllerControlHandle { inner: this.inner.clone() };
935 Ok(PeerControllerRequest::GetConfiguration {
936 responder: PeerControllerGetConfigurationResponder {
937 control_handle: std::mem::ManuallyDrop::new(control_handle),
938 tx_id: header.tx_id,
939 },
940 })
941 }
942 0x43465c9341d472eb => {
943 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
944 let mut req = fidl::new_empty!(
945 fidl::encoding::EmptyPayload,
946 fidl::encoding::DefaultFuchsiaResourceDialect
947 );
948 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
949 let control_handle =
950 PeerControllerControlHandle { inner: this.inner.clone() };
951 Ok(PeerControllerRequest::SuspendStream {
952 responder: PeerControllerSuspendStreamResponder {
953 control_handle: std::mem::ManuallyDrop::new(control_handle),
954 tx_id: header.tx_id,
955 },
956 })
957 }
958 0x7ce8e3b693e20fe3 => {
959 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
960 let mut req = fidl::new_empty!(
961 fidl::encoding::EmptyPayload,
962 fidl::encoding::DefaultFuchsiaResourceDialect
963 );
964 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
965 let control_handle =
966 PeerControllerControlHandle { inner: this.inner.clone() };
967 Ok(PeerControllerRequest::SuspendAndReconfigure {
968 responder: PeerControllerSuspendAndReconfigureResponder {
969 control_handle: std::mem::ManuallyDrop::new(control_handle),
970 tx_id: header.tx_id,
971 },
972 })
973 }
974 0x438e16ccd91eb5e5 => {
975 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
976 let mut req = fidl::new_empty!(
977 fidl::encoding::EmptyPayload,
978 fidl::encoding::DefaultFuchsiaResourceDialect
979 );
980 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
981 let control_handle =
982 PeerControllerControlHandle { inner: this.inner.clone() };
983 Ok(PeerControllerRequest::EstablishStream {
984 responder: PeerControllerEstablishStreamResponder {
985 control_handle: std::mem::ManuallyDrop::new(control_handle),
986 tx_id: header.tx_id,
987 },
988 })
989 }
990 0x4884104b373151c6 => {
991 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
992 let mut req = fidl::new_empty!(
993 fidl::encoding::EmptyPayload,
994 fidl::encoding::DefaultFuchsiaResourceDialect
995 );
996 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
997 let control_handle =
998 PeerControllerControlHandle { inner: this.inner.clone() };
999 Ok(PeerControllerRequest::ReleaseStream {
1000 responder: PeerControllerReleaseStreamResponder {
1001 control_handle: std::mem::ManuallyDrop::new(control_handle),
1002 tx_id: header.tx_id,
1003 },
1004 })
1005 }
1006 0xf85b067ed144997 => {
1007 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1008 let mut req = fidl::new_empty!(
1009 fidl::encoding::EmptyPayload,
1010 fidl::encoding::DefaultFuchsiaResourceDialect
1011 );
1012 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
1013 let control_handle =
1014 PeerControllerControlHandle { inner: this.inner.clone() };
1015 Ok(PeerControllerRequest::AbortStream {
1016 responder: PeerControllerAbortStreamResponder {
1017 control_handle: std::mem::ManuallyDrop::new(control_handle),
1018 tx_id: header.tx_id,
1019 },
1020 })
1021 }
1022 0xd0ead9aec2ebf77 => {
1023 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1024 let mut req = fidl::new_empty!(
1025 fidl::encoding::EmptyPayload,
1026 fidl::encoding::DefaultFuchsiaResourceDialect
1027 );
1028 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
1029 let control_handle =
1030 PeerControllerControlHandle { inner: this.inner.clone() };
1031 Ok(PeerControllerRequest::StartStream {
1032 responder: PeerControllerStartStreamResponder {
1033 control_handle: std::mem::ManuallyDrop::new(control_handle),
1034 tx_id: header.tx_id,
1035 },
1036 })
1037 }
1038 0x559404d6a9629c60 => {
1039 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1040 let mut req = fidl::new_empty!(
1041 fidl::encoding::EmptyPayload,
1042 fidl::encoding::DefaultFuchsiaResourceDialect
1043 );
1044 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
1045 let control_handle =
1046 PeerControllerControlHandle { inner: this.inner.clone() };
1047 Ok(PeerControllerRequest::ReconfigureStream {
1048 responder: PeerControllerReconfigureStreamResponder {
1049 control_handle: std::mem::ManuallyDrop::new(control_handle),
1050 tx_id: header.tx_id,
1051 },
1052 })
1053 }
1054 0x16884c07e6d969a7 => {
1055 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1056 let mut req = fidl::new_empty!(
1057 fidl::encoding::EmptyPayload,
1058 fidl::encoding::DefaultFuchsiaResourceDialect
1059 );
1060 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
1061 let control_handle =
1062 PeerControllerControlHandle { inner: this.inner.clone() };
1063 Ok(PeerControllerRequest::GetCapabilities {
1064 responder: PeerControllerGetCapabilitiesResponder {
1065 control_handle: std::mem::ManuallyDrop::new(control_handle),
1066 tx_id: header.tx_id,
1067 },
1068 })
1069 }
1070 0x1e2c5b438e288cea => {
1071 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1072 let mut req = fidl::new_empty!(
1073 fidl::encoding::EmptyPayload,
1074 fidl::encoding::DefaultFuchsiaResourceDialect
1075 );
1076 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
1077 let control_handle =
1078 PeerControllerControlHandle { inner: this.inner.clone() };
1079 Ok(PeerControllerRequest::GetAllCapabilities {
1080 responder: PeerControllerGetAllCapabilitiesResponder {
1081 control_handle: std::mem::ManuallyDrop::new(control_handle),
1082 tx_id: header.tx_id,
1083 },
1084 })
1085 }
1086 _ => Err(fidl::Error::UnknownOrdinal {
1087 ordinal: header.ordinal,
1088 protocol_name:
1089 <PeerControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
1090 }),
1091 }))
1092 },
1093 )
1094 }
1095}
1096
1097#[derive(Debug)]
1106pub enum PeerControllerRequest {
1107 SetConfiguration { responder: PeerControllerSetConfigurationResponder },
1111 GetConfiguration { responder: PeerControllerGetConfigurationResponder },
1114 SuspendStream { responder: PeerControllerSuspendStreamResponder },
1117 SuspendAndReconfigure { responder: PeerControllerSuspendAndReconfigureResponder },
1121 EstablishStream { responder: PeerControllerEstablishStreamResponder },
1123 ReleaseStream { responder: PeerControllerReleaseStreamResponder },
1126 AbortStream { responder: PeerControllerAbortStreamResponder },
1129 StartStream { responder: PeerControllerStartStreamResponder },
1132 ReconfigureStream { responder: PeerControllerReconfigureStreamResponder },
1136 GetCapabilities { responder: PeerControllerGetCapabilitiesResponder },
1139 GetAllCapabilities { responder: PeerControllerGetAllCapabilitiesResponder },
1142}
1143
1144impl PeerControllerRequest {
1145 #[allow(irrefutable_let_patterns)]
1146 pub fn into_set_configuration(self) -> Option<(PeerControllerSetConfigurationResponder)> {
1147 if let PeerControllerRequest::SetConfiguration { responder } = self {
1148 Some((responder))
1149 } else {
1150 None
1151 }
1152 }
1153
1154 #[allow(irrefutable_let_patterns)]
1155 pub fn into_get_configuration(self) -> Option<(PeerControllerGetConfigurationResponder)> {
1156 if let PeerControllerRequest::GetConfiguration { responder } = self {
1157 Some((responder))
1158 } else {
1159 None
1160 }
1161 }
1162
1163 #[allow(irrefutable_let_patterns)]
1164 pub fn into_suspend_stream(self) -> Option<(PeerControllerSuspendStreamResponder)> {
1165 if let PeerControllerRequest::SuspendStream { responder } = self {
1166 Some((responder))
1167 } else {
1168 None
1169 }
1170 }
1171
1172 #[allow(irrefutable_let_patterns)]
1173 pub fn into_suspend_and_reconfigure(
1174 self,
1175 ) -> Option<(PeerControllerSuspendAndReconfigureResponder)> {
1176 if let PeerControllerRequest::SuspendAndReconfigure { responder } = self {
1177 Some((responder))
1178 } else {
1179 None
1180 }
1181 }
1182
1183 #[allow(irrefutable_let_patterns)]
1184 pub fn into_establish_stream(self) -> Option<(PeerControllerEstablishStreamResponder)> {
1185 if let PeerControllerRequest::EstablishStream { responder } = self {
1186 Some((responder))
1187 } else {
1188 None
1189 }
1190 }
1191
1192 #[allow(irrefutable_let_patterns)]
1193 pub fn into_release_stream(self) -> Option<(PeerControllerReleaseStreamResponder)> {
1194 if let PeerControllerRequest::ReleaseStream { responder } = self {
1195 Some((responder))
1196 } else {
1197 None
1198 }
1199 }
1200
1201 #[allow(irrefutable_let_patterns)]
1202 pub fn into_abort_stream(self) -> Option<(PeerControllerAbortStreamResponder)> {
1203 if let PeerControllerRequest::AbortStream { responder } = self {
1204 Some((responder))
1205 } else {
1206 None
1207 }
1208 }
1209
1210 #[allow(irrefutable_let_patterns)]
1211 pub fn into_start_stream(self) -> Option<(PeerControllerStartStreamResponder)> {
1212 if let PeerControllerRequest::StartStream { responder } = self {
1213 Some((responder))
1214 } else {
1215 None
1216 }
1217 }
1218
1219 #[allow(irrefutable_let_patterns)]
1220 pub fn into_reconfigure_stream(self) -> Option<(PeerControllerReconfigureStreamResponder)> {
1221 if let PeerControllerRequest::ReconfigureStream { responder } = self {
1222 Some((responder))
1223 } else {
1224 None
1225 }
1226 }
1227
1228 #[allow(irrefutable_let_patterns)]
1229 pub fn into_get_capabilities(self) -> Option<(PeerControllerGetCapabilitiesResponder)> {
1230 if let PeerControllerRequest::GetCapabilities { responder } = self {
1231 Some((responder))
1232 } else {
1233 None
1234 }
1235 }
1236
1237 #[allow(irrefutable_let_patterns)]
1238 pub fn into_get_all_capabilities(self) -> Option<(PeerControllerGetAllCapabilitiesResponder)> {
1239 if let PeerControllerRequest::GetAllCapabilities { responder } = self {
1240 Some((responder))
1241 } else {
1242 None
1243 }
1244 }
1245
1246 pub fn method_name(&self) -> &'static str {
1248 match *self {
1249 PeerControllerRequest::SetConfiguration { .. } => "set_configuration",
1250 PeerControllerRequest::GetConfiguration { .. } => "get_configuration",
1251 PeerControllerRequest::SuspendStream { .. } => "suspend_stream",
1252 PeerControllerRequest::SuspendAndReconfigure { .. } => "suspend_and_reconfigure",
1253 PeerControllerRequest::EstablishStream { .. } => "establish_stream",
1254 PeerControllerRequest::ReleaseStream { .. } => "release_stream",
1255 PeerControllerRequest::AbortStream { .. } => "abort_stream",
1256 PeerControllerRequest::StartStream { .. } => "start_stream",
1257 PeerControllerRequest::ReconfigureStream { .. } => "reconfigure_stream",
1258 PeerControllerRequest::GetCapabilities { .. } => "get_capabilities",
1259 PeerControllerRequest::GetAllCapabilities { .. } => "get_all_capabilities",
1260 }
1261 }
1262}
1263
1264#[derive(Debug, Clone)]
1265pub struct PeerControllerControlHandle {
1266 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1267}
1268
1269impl fidl::endpoints::ControlHandle for PeerControllerControlHandle {
1270 fn shutdown(&self) {
1271 self.inner.shutdown()
1272 }
1273 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
1274 self.inner.shutdown_with_epitaph(status)
1275 }
1276
1277 fn is_closed(&self) -> bool {
1278 self.inner.channel().is_closed()
1279 }
1280 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
1281 self.inner.channel().on_closed()
1282 }
1283
1284 #[cfg(target_os = "fuchsia")]
1285 fn signal_peer(
1286 &self,
1287 clear_mask: zx::Signals,
1288 set_mask: zx::Signals,
1289 ) -> Result<(), zx_status::Status> {
1290 use fidl::Peered;
1291 self.inner.channel().signal_peer(clear_mask, set_mask)
1292 }
1293}
1294
1295impl PeerControllerControlHandle {}
1296
1297#[must_use = "FIDL methods require a response to be sent"]
1298#[derive(Debug)]
1299pub struct PeerControllerSetConfigurationResponder {
1300 control_handle: std::mem::ManuallyDrop<PeerControllerControlHandle>,
1301 tx_id: u32,
1302}
1303
1304impl std::ops::Drop for PeerControllerSetConfigurationResponder {
1308 fn drop(&mut self) {
1309 self.control_handle.shutdown();
1310 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1312 }
1313}
1314
1315impl fidl::endpoints::Responder for PeerControllerSetConfigurationResponder {
1316 type ControlHandle = PeerControllerControlHandle;
1317
1318 fn control_handle(&self) -> &PeerControllerControlHandle {
1319 &self.control_handle
1320 }
1321
1322 fn drop_without_shutdown(mut self) {
1323 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1325 std::mem::forget(self);
1327 }
1328}
1329
1330impl PeerControllerSetConfigurationResponder {
1331 pub fn send(self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1335 let _result = self.send_raw(result);
1336 if _result.is_err() {
1337 self.control_handle.shutdown();
1338 }
1339 self.drop_without_shutdown();
1340 _result
1341 }
1342
1343 pub fn send_no_shutdown_on_err(
1345 self,
1346 mut result: Result<(), PeerError>,
1347 ) -> Result<(), fidl::Error> {
1348 let _result = self.send_raw(result);
1349 self.drop_without_shutdown();
1350 _result
1351 }
1352
1353 fn send_raw(&self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1354 self.control_handle
1355 .inner
1356 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>>(
1357 result,
1358 self.tx_id,
1359 0x35f45144acf701ae,
1360 fidl::encoding::DynamicFlags::empty(),
1361 )
1362 }
1363}
1364
1365#[must_use = "FIDL methods require a response to be sent"]
1366#[derive(Debug)]
1367pub struct PeerControllerGetConfigurationResponder {
1368 control_handle: std::mem::ManuallyDrop<PeerControllerControlHandle>,
1369 tx_id: u32,
1370}
1371
1372impl std::ops::Drop for PeerControllerGetConfigurationResponder {
1376 fn drop(&mut self) {
1377 self.control_handle.shutdown();
1378 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1380 }
1381}
1382
1383impl fidl::endpoints::Responder for PeerControllerGetConfigurationResponder {
1384 type ControlHandle = PeerControllerControlHandle;
1385
1386 fn control_handle(&self) -> &PeerControllerControlHandle {
1387 &self.control_handle
1388 }
1389
1390 fn drop_without_shutdown(mut self) {
1391 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1393 std::mem::forget(self);
1395 }
1396}
1397
1398impl PeerControllerGetConfigurationResponder {
1399 pub fn send(self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1403 let _result = self.send_raw(result);
1404 if _result.is_err() {
1405 self.control_handle.shutdown();
1406 }
1407 self.drop_without_shutdown();
1408 _result
1409 }
1410
1411 pub fn send_no_shutdown_on_err(
1413 self,
1414 mut result: Result<(), PeerError>,
1415 ) -> Result<(), fidl::Error> {
1416 let _result = self.send_raw(result);
1417 self.drop_without_shutdown();
1418 _result
1419 }
1420
1421 fn send_raw(&self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1422 self.control_handle
1423 .inner
1424 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>>(
1425 result,
1426 self.tx_id,
1427 0x507eb0483e8d50d,
1428 fidl::encoding::DynamicFlags::empty(),
1429 )
1430 }
1431}
1432
1433#[must_use = "FIDL methods require a response to be sent"]
1434#[derive(Debug)]
1435pub struct PeerControllerSuspendStreamResponder {
1436 control_handle: std::mem::ManuallyDrop<PeerControllerControlHandle>,
1437 tx_id: u32,
1438}
1439
1440impl std::ops::Drop for PeerControllerSuspendStreamResponder {
1444 fn drop(&mut self) {
1445 self.control_handle.shutdown();
1446 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1448 }
1449}
1450
1451impl fidl::endpoints::Responder for PeerControllerSuspendStreamResponder {
1452 type ControlHandle = PeerControllerControlHandle;
1453
1454 fn control_handle(&self) -> &PeerControllerControlHandle {
1455 &self.control_handle
1456 }
1457
1458 fn drop_without_shutdown(mut self) {
1459 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1461 std::mem::forget(self);
1463 }
1464}
1465
1466impl PeerControllerSuspendStreamResponder {
1467 pub fn send(self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1471 let _result = self.send_raw(result);
1472 if _result.is_err() {
1473 self.control_handle.shutdown();
1474 }
1475 self.drop_without_shutdown();
1476 _result
1477 }
1478
1479 pub fn send_no_shutdown_on_err(
1481 self,
1482 mut result: Result<(), PeerError>,
1483 ) -> Result<(), fidl::Error> {
1484 let _result = self.send_raw(result);
1485 self.drop_without_shutdown();
1486 _result
1487 }
1488
1489 fn send_raw(&self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1490 self.control_handle
1491 .inner
1492 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>>(
1493 result,
1494 self.tx_id,
1495 0x43465c9341d472eb,
1496 fidl::encoding::DynamicFlags::empty(),
1497 )
1498 }
1499}
1500
1501#[must_use = "FIDL methods require a response to be sent"]
1502#[derive(Debug)]
1503pub struct PeerControllerSuspendAndReconfigureResponder {
1504 control_handle: std::mem::ManuallyDrop<PeerControllerControlHandle>,
1505 tx_id: u32,
1506}
1507
1508impl std::ops::Drop for PeerControllerSuspendAndReconfigureResponder {
1512 fn drop(&mut self) {
1513 self.control_handle.shutdown();
1514 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1516 }
1517}
1518
1519impl fidl::endpoints::Responder for PeerControllerSuspendAndReconfigureResponder {
1520 type ControlHandle = PeerControllerControlHandle;
1521
1522 fn control_handle(&self) -> &PeerControllerControlHandle {
1523 &self.control_handle
1524 }
1525
1526 fn drop_without_shutdown(mut self) {
1527 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1529 std::mem::forget(self);
1531 }
1532}
1533
1534impl PeerControllerSuspendAndReconfigureResponder {
1535 pub fn send(self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1539 let _result = self.send_raw(result);
1540 if _result.is_err() {
1541 self.control_handle.shutdown();
1542 }
1543 self.drop_without_shutdown();
1544 _result
1545 }
1546
1547 pub fn send_no_shutdown_on_err(
1549 self,
1550 mut result: Result<(), PeerError>,
1551 ) -> Result<(), fidl::Error> {
1552 let _result = self.send_raw(result);
1553 self.drop_without_shutdown();
1554 _result
1555 }
1556
1557 fn send_raw(&self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1558 self.control_handle
1559 .inner
1560 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>>(
1561 result,
1562 self.tx_id,
1563 0x7ce8e3b693e20fe3,
1564 fidl::encoding::DynamicFlags::empty(),
1565 )
1566 }
1567}
1568
1569#[must_use = "FIDL methods require a response to be sent"]
1570#[derive(Debug)]
1571pub struct PeerControllerEstablishStreamResponder {
1572 control_handle: std::mem::ManuallyDrop<PeerControllerControlHandle>,
1573 tx_id: u32,
1574}
1575
1576impl std::ops::Drop for PeerControllerEstablishStreamResponder {
1580 fn drop(&mut self) {
1581 self.control_handle.shutdown();
1582 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1584 }
1585}
1586
1587impl fidl::endpoints::Responder for PeerControllerEstablishStreamResponder {
1588 type ControlHandle = PeerControllerControlHandle;
1589
1590 fn control_handle(&self) -> &PeerControllerControlHandle {
1591 &self.control_handle
1592 }
1593
1594 fn drop_without_shutdown(mut self) {
1595 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1597 std::mem::forget(self);
1599 }
1600}
1601
1602impl PeerControllerEstablishStreamResponder {
1603 pub fn send(self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1607 let _result = self.send_raw(result);
1608 if _result.is_err() {
1609 self.control_handle.shutdown();
1610 }
1611 self.drop_without_shutdown();
1612 _result
1613 }
1614
1615 pub fn send_no_shutdown_on_err(
1617 self,
1618 mut result: Result<(), PeerError>,
1619 ) -> Result<(), fidl::Error> {
1620 let _result = self.send_raw(result);
1621 self.drop_without_shutdown();
1622 _result
1623 }
1624
1625 fn send_raw(&self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1626 self.control_handle
1627 .inner
1628 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>>(
1629 result,
1630 self.tx_id,
1631 0x438e16ccd91eb5e5,
1632 fidl::encoding::DynamicFlags::empty(),
1633 )
1634 }
1635}
1636
1637#[must_use = "FIDL methods require a response to be sent"]
1638#[derive(Debug)]
1639pub struct PeerControllerReleaseStreamResponder {
1640 control_handle: std::mem::ManuallyDrop<PeerControllerControlHandle>,
1641 tx_id: u32,
1642}
1643
1644impl std::ops::Drop for PeerControllerReleaseStreamResponder {
1648 fn drop(&mut self) {
1649 self.control_handle.shutdown();
1650 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1652 }
1653}
1654
1655impl fidl::endpoints::Responder for PeerControllerReleaseStreamResponder {
1656 type ControlHandle = PeerControllerControlHandle;
1657
1658 fn control_handle(&self) -> &PeerControllerControlHandle {
1659 &self.control_handle
1660 }
1661
1662 fn drop_without_shutdown(mut self) {
1663 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1665 std::mem::forget(self);
1667 }
1668}
1669
1670impl PeerControllerReleaseStreamResponder {
1671 pub fn send(self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1675 let _result = self.send_raw(result);
1676 if _result.is_err() {
1677 self.control_handle.shutdown();
1678 }
1679 self.drop_without_shutdown();
1680 _result
1681 }
1682
1683 pub fn send_no_shutdown_on_err(
1685 self,
1686 mut result: Result<(), PeerError>,
1687 ) -> Result<(), fidl::Error> {
1688 let _result = self.send_raw(result);
1689 self.drop_without_shutdown();
1690 _result
1691 }
1692
1693 fn send_raw(&self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1694 self.control_handle
1695 .inner
1696 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>>(
1697 result,
1698 self.tx_id,
1699 0x4884104b373151c6,
1700 fidl::encoding::DynamicFlags::empty(),
1701 )
1702 }
1703}
1704
1705#[must_use = "FIDL methods require a response to be sent"]
1706#[derive(Debug)]
1707pub struct PeerControllerAbortStreamResponder {
1708 control_handle: std::mem::ManuallyDrop<PeerControllerControlHandle>,
1709 tx_id: u32,
1710}
1711
1712impl std::ops::Drop for PeerControllerAbortStreamResponder {
1716 fn drop(&mut self) {
1717 self.control_handle.shutdown();
1718 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1720 }
1721}
1722
1723impl fidl::endpoints::Responder for PeerControllerAbortStreamResponder {
1724 type ControlHandle = PeerControllerControlHandle;
1725
1726 fn control_handle(&self) -> &PeerControllerControlHandle {
1727 &self.control_handle
1728 }
1729
1730 fn drop_without_shutdown(mut self) {
1731 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1733 std::mem::forget(self);
1735 }
1736}
1737
1738impl PeerControllerAbortStreamResponder {
1739 pub fn send(self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1743 let _result = self.send_raw(result);
1744 if _result.is_err() {
1745 self.control_handle.shutdown();
1746 }
1747 self.drop_without_shutdown();
1748 _result
1749 }
1750
1751 pub fn send_no_shutdown_on_err(
1753 self,
1754 mut result: Result<(), PeerError>,
1755 ) -> Result<(), fidl::Error> {
1756 let _result = self.send_raw(result);
1757 self.drop_without_shutdown();
1758 _result
1759 }
1760
1761 fn send_raw(&self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1762 self.control_handle
1763 .inner
1764 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>>(
1765 result,
1766 self.tx_id,
1767 0xf85b067ed144997,
1768 fidl::encoding::DynamicFlags::empty(),
1769 )
1770 }
1771}
1772
1773#[must_use = "FIDL methods require a response to be sent"]
1774#[derive(Debug)]
1775pub struct PeerControllerStartStreamResponder {
1776 control_handle: std::mem::ManuallyDrop<PeerControllerControlHandle>,
1777 tx_id: u32,
1778}
1779
1780impl std::ops::Drop for PeerControllerStartStreamResponder {
1784 fn drop(&mut self) {
1785 self.control_handle.shutdown();
1786 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1788 }
1789}
1790
1791impl fidl::endpoints::Responder for PeerControllerStartStreamResponder {
1792 type ControlHandle = PeerControllerControlHandle;
1793
1794 fn control_handle(&self) -> &PeerControllerControlHandle {
1795 &self.control_handle
1796 }
1797
1798 fn drop_without_shutdown(mut self) {
1799 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1801 std::mem::forget(self);
1803 }
1804}
1805
1806impl PeerControllerStartStreamResponder {
1807 pub fn send(self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1811 let _result = self.send_raw(result);
1812 if _result.is_err() {
1813 self.control_handle.shutdown();
1814 }
1815 self.drop_without_shutdown();
1816 _result
1817 }
1818
1819 pub fn send_no_shutdown_on_err(
1821 self,
1822 mut result: Result<(), PeerError>,
1823 ) -> Result<(), fidl::Error> {
1824 let _result = self.send_raw(result);
1825 self.drop_without_shutdown();
1826 _result
1827 }
1828
1829 fn send_raw(&self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1830 self.control_handle
1831 .inner
1832 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>>(
1833 result,
1834 self.tx_id,
1835 0xd0ead9aec2ebf77,
1836 fidl::encoding::DynamicFlags::empty(),
1837 )
1838 }
1839}
1840
1841#[must_use = "FIDL methods require a response to be sent"]
1842#[derive(Debug)]
1843pub struct PeerControllerReconfigureStreamResponder {
1844 control_handle: std::mem::ManuallyDrop<PeerControllerControlHandle>,
1845 tx_id: u32,
1846}
1847
1848impl std::ops::Drop for PeerControllerReconfigureStreamResponder {
1852 fn drop(&mut self) {
1853 self.control_handle.shutdown();
1854 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1856 }
1857}
1858
1859impl fidl::endpoints::Responder for PeerControllerReconfigureStreamResponder {
1860 type ControlHandle = PeerControllerControlHandle;
1861
1862 fn control_handle(&self) -> &PeerControllerControlHandle {
1863 &self.control_handle
1864 }
1865
1866 fn drop_without_shutdown(mut self) {
1867 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1869 std::mem::forget(self);
1871 }
1872}
1873
1874impl PeerControllerReconfigureStreamResponder {
1875 pub fn send(self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1879 let _result = self.send_raw(result);
1880 if _result.is_err() {
1881 self.control_handle.shutdown();
1882 }
1883 self.drop_without_shutdown();
1884 _result
1885 }
1886
1887 pub fn send_no_shutdown_on_err(
1889 self,
1890 mut result: Result<(), PeerError>,
1891 ) -> Result<(), fidl::Error> {
1892 let _result = self.send_raw(result);
1893 self.drop_without_shutdown();
1894 _result
1895 }
1896
1897 fn send_raw(&self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1898 self.control_handle
1899 .inner
1900 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>>(
1901 result,
1902 self.tx_id,
1903 0x559404d6a9629c60,
1904 fidl::encoding::DynamicFlags::empty(),
1905 )
1906 }
1907}
1908
1909#[must_use = "FIDL methods require a response to be sent"]
1910#[derive(Debug)]
1911pub struct PeerControllerGetCapabilitiesResponder {
1912 control_handle: std::mem::ManuallyDrop<PeerControllerControlHandle>,
1913 tx_id: u32,
1914}
1915
1916impl std::ops::Drop for PeerControllerGetCapabilitiesResponder {
1920 fn drop(&mut self) {
1921 self.control_handle.shutdown();
1922 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1924 }
1925}
1926
1927impl fidl::endpoints::Responder for PeerControllerGetCapabilitiesResponder {
1928 type ControlHandle = PeerControllerControlHandle;
1929
1930 fn control_handle(&self) -> &PeerControllerControlHandle {
1931 &self.control_handle
1932 }
1933
1934 fn drop_without_shutdown(mut self) {
1935 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1937 std::mem::forget(self);
1939 }
1940}
1941
1942impl PeerControllerGetCapabilitiesResponder {
1943 pub fn send(self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1947 let _result = self.send_raw(result);
1948 if _result.is_err() {
1949 self.control_handle.shutdown();
1950 }
1951 self.drop_without_shutdown();
1952 _result
1953 }
1954
1955 pub fn send_no_shutdown_on_err(
1957 self,
1958 mut result: Result<(), PeerError>,
1959 ) -> Result<(), fidl::Error> {
1960 let _result = self.send_raw(result);
1961 self.drop_without_shutdown();
1962 _result
1963 }
1964
1965 fn send_raw(&self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
1966 self.control_handle
1967 .inner
1968 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>>(
1969 result,
1970 self.tx_id,
1971 0x16884c07e6d969a7,
1972 fidl::encoding::DynamicFlags::empty(),
1973 )
1974 }
1975}
1976
1977#[must_use = "FIDL methods require a response to be sent"]
1978#[derive(Debug)]
1979pub struct PeerControllerGetAllCapabilitiesResponder {
1980 control_handle: std::mem::ManuallyDrop<PeerControllerControlHandle>,
1981 tx_id: u32,
1982}
1983
1984impl std::ops::Drop for PeerControllerGetAllCapabilitiesResponder {
1988 fn drop(&mut self) {
1989 self.control_handle.shutdown();
1990 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1992 }
1993}
1994
1995impl fidl::endpoints::Responder for PeerControllerGetAllCapabilitiesResponder {
1996 type ControlHandle = PeerControllerControlHandle;
1997
1998 fn control_handle(&self) -> &PeerControllerControlHandle {
1999 &self.control_handle
2000 }
2001
2002 fn drop_without_shutdown(mut self) {
2003 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2005 std::mem::forget(self);
2007 }
2008}
2009
2010impl PeerControllerGetAllCapabilitiesResponder {
2011 pub fn send(self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
2015 let _result = self.send_raw(result);
2016 if _result.is_err() {
2017 self.control_handle.shutdown();
2018 }
2019 self.drop_without_shutdown();
2020 _result
2021 }
2022
2023 pub fn send_no_shutdown_on_err(
2025 self,
2026 mut result: Result<(), PeerError>,
2027 ) -> Result<(), fidl::Error> {
2028 let _result = self.send_raw(result);
2029 self.drop_without_shutdown();
2030 _result
2031 }
2032
2033 fn send_raw(&self, mut result: Result<(), PeerError>) -> Result<(), fidl::Error> {
2034 self.control_handle
2035 .inner
2036 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, PeerError>>(
2037 result,
2038 self.tx_id,
2039 0x1e2c5b438e288cea,
2040 fidl::encoding::DynamicFlags::empty(),
2041 )
2042 }
2043}
2044
2045#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
2046pub struct PeerManagerMarker;
2047
2048impl fidl::endpoints::ProtocolMarker for PeerManagerMarker {
2049 type Proxy = PeerManagerProxy;
2050 type RequestStream = PeerManagerRequestStream;
2051 #[cfg(target_os = "fuchsia")]
2052 type SynchronousProxy = PeerManagerSynchronousProxy;
2053
2054 const DEBUG_NAME: &'static str = "fuchsia.bluetooth.avdtp.test.PeerManager";
2055}
2056impl fidl::endpoints::DiscoverableProtocolMarker for PeerManagerMarker {}
2057
2058pub trait PeerManagerProxyInterface: Send + Sync {
2059 fn r#get_peer(
2060 &self,
2061 peer_id: &fidl_fuchsia_bluetooth::PeerId,
2062 handle: fidl::endpoints::ServerEnd<PeerControllerMarker>,
2063 ) -> Result<(), fidl::Error>;
2064 type ConnectedPeersResponseFut: std::future::Future<Output = Result<Vec<fidl_fuchsia_bluetooth::PeerId>, fidl::Error>>
2065 + Send;
2066 fn r#connected_peers(&self) -> Self::ConnectedPeersResponseFut;
2067}
2068#[derive(Debug)]
2069#[cfg(target_os = "fuchsia")]
2070pub struct PeerManagerSynchronousProxy {
2071 client: fidl::client::sync::Client,
2072}
2073
2074#[cfg(target_os = "fuchsia")]
2075impl fidl::endpoints::SynchronousProxy for PeerManagerSynchronousProxy {
2076 type Proxy = PeerManagerProxy;
2077 type Protocol = PeerManagerMarker;
2078
2079 fn from_channel(inner: fidl::Channel) -> Self {
2080 Self::new(inner)
2081 }
2082
2083 fn into_channel(self) -> fidl::Channel {
2084 self.client.into_channel()
2085 }
2086
2087 fn as_channel(&self) -> &fidl::Channel {
2088 self.client.as_channel()
2089 }
2090}
2091
2092#[cfg(target_os = "fuchsia")]
2093impl PeerManagerSynchronousProxy {
2094 pub fn new(channel: fidl::Channel) -> Self {
2095 let protocol_name = <PeerManagerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
2096 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
2097 }
2098
2099 pub fn into_channel(self) -> fidl::Channel {
2100 self.client.into_channel()
2101 }
2102
2103 pub fn wait_for_event(
2106 &self,
2107 deadline: zx::MonotonicInstant,
2108 ) -> Result<PeerManagerEvent, fidl::Error> {
2109 PeerManagerEvent::decode(self.client.wait_for_event(deadline)?)
2110 }
2111
2112 pub fn r#get_peer(
2116 &self,
2117 mut peer_id: &fidl_fuchsia_bluetooth::PeerId,
2118 mut handle: fidl::endpoints::ServerEnd<PeerControllerMarker>,
2119 ) -> Result<(), fidl::Error> {
2120 self.client.send::<PeerManagerGetPeerRequest>(
2121 (peer_id, handle),
2122 0x2a506872f2b04086,
2123 fidl::encoding::DynamicFlags::empty(),
2124 )
2125 }
2126
2127 pub fn r#connected_peers(
2129 &self,
2130 ___deadline: zx::MonotonicInstant,
2131 ) -> Result<Vec<fidl_fuchsia_bluetooth::PeerId>, fidl::Error> {
2132 let _response = self
2133 .client
2134 .send_query::<fidl::encoding::EmptyPayload, PeerManagerConnectedPeersResponse>(
2135 (),
2136 0x1deaca0295d5f8d6,
2137 fidl::encoding::DynamicFlags::empty(),
2138 ___deadline,
2139 )?;
2140 Ok(_response.peer_ids)
2141 }
2142}
2143
2144#[cfg(target_os = "fuchsia")]
2145impl From<PeerManagerSynchronousProxy> for zx::Handle {
2146 fn from(value: PeerManagerSynchronousProxy) -> Self {
2147 value.into_channel().into()
2148 }
2149}
2150
2151#[cfg(target_os = "fuchsia")]
2152impl From<fidl::Channel> for PeerManagerSynchronousProxy {
2153 fn from(value: fidl::Channel) -> Self {
2154 Self::new(value)
2155 }
2156}
2157
2158#[derive(Debug, Clone)]
2159pub struct PeerManagerProxy {
2160 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
2161}
2162
2163impl fidl::endpoints::Proxy for PeerManagerProxy {
2164 type Protocol = PeerManagerMarker;
2165
2166 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
2167 Self::new(inner)
2168 }
2169
2170 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
2171 self.client.into_channel().map_err(|client| Self { client })
2172 }
2173
2174 fn as_channel(&self) -> &::fidl::AsyncChannel {
2175 self.client.as_channel()
2176 }
2177}
2178
2179impl PeerManagerProxy {
2180 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
2182 let protocol_name = <PeerManagerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
2183 Self { client: fidl::client::Client::new(channel, protocol_name) }
2184 }
2185
2186 pub fn take_event_stream(&self) -> PeerManagerEventStream {
2192 PeerManagerEventStream { event_receiver: self.client.take_event_receiver() }
2193 }
2194
2195 pub fn r#get_peer(
2199 &self,
2200 mut peer_id: &fidl_fuchsia_bluetooth::PeerId,
2201 mut handle: fidl::endpoints::ServerEnd<PeerControllerMarker>,
2202 ) -> Result<(), fidl::Error> {
2203 PeerManagerProxyInterface::r#get_peer(self, peer_id, handle)
2204 }
2205
2206 pub fn r#connected_peers(
2208 &self,
2209 ) -> fidl::client::QueryResponseFut<
2210 Vec<fidl_fuchsia_bluetooth::PeerId>,
2211 fidl::encoding::DefaultFuchsiaResourceDialect,
2212 > {
2213 PeerManagerProxyInterface::r#connected_peers(self)
2214 }
2215}
2216
2217impl PeerManagerProxyInterface for PeerManagerProxy {
2218 fn r#get_peer(
2219 &self,
2220 mut peer_id: &fidl_fuchsia_bluetooth::PeerId,
2221 mut handle: fidl::endpoints::ServerEnd<PeerControllerMarker>,
2222 ) -> Result<(), fidl::Error> {
2223 self.client.send::<PeerManagerGetPeerRequest>(
2224 (peer_id, handle),
2225 0x2a506872f2b04086,
2226 fidl::encoding::DynamicFlags::empty(),
2227 )
2228 }
2229
2230 type ConnectedPeersResponseFut = fidl::client::QueryResponseFut<
2231 Vec<fidl_fuchsia_bluetooth::PeerId>,
2232 fidl::encoding::DefaultFuchsiaResourceDialect,
2233 >;
2234 fn r#connected_peers(&self) -> Self::ConnectedPeersResponseFut {
2235 fn _decode(
2236 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2237 ) -> Result<Vec<fidl_fuchsia_bluetooth::PeerId>, fidl::Error> {
2238 let _response = fidl::client::decode_transaction_body::<
2239 PeerManagerConnectedPeersResponse,
2240 fidl::encoding::DefaultFuchsiaResourceDialect,
2241 0x1deaca0295d5f8d6,
2242 >(_buf?)?;
2243 Ok(_response.peer_ids)
2244 }
2245 self.client.send_query_and_decode::<
2246 fidl::encoding::EmptyPayload,
2247 Vec<fidl_fuchsia_bluetooth::PeerId>,
2248 >(
2249 (),
2250 0x1deaca0295d5f8d6,
2251 fidl::encoding::DynamicFlags::empty(),
2252 _decode,
2253 )
2254 }
2255}
2256
2257pub struct PeerManagerEventStream {
2258 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
2259}
2260
2261impl std::marker::Unpin for PeerManagerEventStream {}
2262
2263impl futures::stream::FusedStream for PeerManagerEventStream {
2264 fn is_terminated(&self) -> bool {
2265 self.event_receiver.is_terminated()
2266 }
2267}
2268
2269impl futures::Stream for PeerManagerEventStream {
2270 type Item = Result<PeerManagerEvent, fidl::Error>;
2271
2272 fn poll_next(
2273 mut self: std::pin::Pin<&mut Self>,
2274 cx: &mut std::task::Context<'_>,
2275 ) -> std::task::Poll<Option<Self::Item>> {
2276 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
2277 &mut self.event_receiver,
2278 cx
2279 )?) {
2280 Some(buf) => std::task::Poll::Ready(Some(PeerManagerEvent::decode(buf))),
2281 None => std::task::Poll::Ready(None),
2282 }
2283 }
2284}
2285
2286#[derive(Debug)]
2287pub enum PeerManagerEvent {
2288 OnPeerConnected { peer_id: fidl_fuchsia_bluetooth::PeerId },
2289}
2290
2291impl PeerManagerEvent {
2292 #[allow(irrefutable_let_patterns)]
2293 pub fn into_on_peer_connected(self) -> Option<fidl_fuchsia_bluetooth::PeerId> {
2294 if let PeerManagerEvent::OnPeerConnected { peer_id } = self {
2295 Some((peer_id))
2296 } else {
2297 None
2298 }
2299 }
2300
2301 fn decode(
2303 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
2304 ) -> Result<PeerManagerEvent, fidl::Error> {
2305 let (bytes, _handles) = buf.split_mut();
2306 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
2307 debug_assert_eq!(tx_header.tx_id, 0);
2308 match tx_header.ordinal {
2309 0x154e6b9e519774d1 => {
2310 let mut out = fidl::new_empty!(
2311 PeerManagerOnPeerConnectedRequest,
2312 fidl::encoding::DefaultFuchsiaResourceDialect
2313 );
2314 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<PeerManagerOnPeerConnectedRequest>(&tx_header, _body_bytes, _handles, &mut out)?;
2315 Ok((PeerManagerEvent::OnPeerConnected { peer_id: out.peer_id }))
2316 }
2317 _ => Err(fidl::Error::UnknownOrdinal {
2318 ordinal: tx_header.ordinal,
2319 protocol_name: <PeerManagerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
2320 }),
2321 }
2322 }
2323}
2324
2325pub struct PeerManagerRequestStream {
2327 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
2328 is_terminated: bool,
2329}
2330
2331impl std::marker::Unpin for PeerManagerRequestStream {}
2332
2333impl futures::stream::FusedStream for PeerManagerRequestStream {
2334 fn is_terminated(&self) -> bool {
2335 self.is_terminated
2336 }
2337}
2338
2339impl fidl::endpoints::RequestStream for PeerManagerRequestStream {
2340 type Protocol = PeerManagerMarker;
2341 type ControlHandle = PeerManagerControlHandle;
2342
2343 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
2344 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
2345 }
2346
2347 fn control_handle(&self) -> Self::ControlHandle {
2348 PeerManagerControlHandle { inner: self.inner.clone() }
2349 }
2350
2351 fn into_inner(
2352 self,
2353 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
2354 {
2355 (self.inner, self.is_terminated)
2356 }
2357
2358 fn from_inner(
2359 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
2360 is_terminated: bool,
2361 ) -> Self {
2362 Self { inner, is_terminated }
2363 }
2364}
2365
2366impl futures::Stream for PeerManagerRequestStream {
2367 type Item = Result<PeerManagerRequest, fidl::Error>;
2368
2369 fn poll_next(
2370 mut self: std::pin::Pin<&mut Self>,
2371 cx: &mut std::task::Context<'_>,
2372 ) -> std::task::Poll<Option<Self::Item>> {
2373 let this = &mut *self;
2374 if this.inner.check_shutdown(cx) {
2375 this.is_terminated = true;
2376 return std::task::Poll::Ready(None);
2377 }
2378 if this.is_terminated {
2379 panic!("polled PeerManagerRequestStream after completion");
2380 }
2381 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
2382 |bytes, handles| {
2383 match this.inner.channel().read_etc(cx, bytes, handles) {
2384 std::task::Poll::Ready(Ok(())) => {}
2385 std::task::Poll::Pending => return std::task::Poll::Pending,
2386 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
2387 this.is_terminated = true;
2388 return std::task::Poll::Ready(None);
2389 }
2390 std::task::Poll::Ready(Err(e)) => {
2391 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
2392 e.into(),
2393 ))))
2394 }
2395 }
2396
2397 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
2399
2400 std::task::Poll::Ready(Some(match header.ordinal {
2401 0x2a506872f2b04086 => {
2402 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
2403 let mut req = fidl::new_empty!(
2404 PeerManagerGetPeerRequest,
2405 fidl::encoding::DefaultFuchsiaResourceDialect
2406 );
2407 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<PeerManagerGetPeerRequest>(&header, _body_bytes, handles, &mut req)?;
2408 let control_handle = PeerManagerControlHandle { inner: this.inner.clone() };
2409 Ok(PeerManagerRequest::GetPeer {
2410 peer_id: req.peer_id,
2411 handle: req.handle,
2412
2413 control_handle,
2414 })
2415 }
2416 0x1deaca0295d5f8d6 => {
2417 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
2418 let mut req = fidl::new_empty!(
2419 fidl::encoding::EmptyPayload,
2420 fidl::encoding::DefaultFuchsiaResourceDialect
2421 );
2422 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
2423 let control_handle = PeerManagerControlHandle { inner: this.inner.clone() };
2424 Ok(PeerManagerRequest::ConnectedPeers {
2425 responder: PeerManagerConnectedPeersResponder {
2426 control_handle: std::mem::ManuallyDrop::new(control_handle),
2427 tx_id: header.tx_id,
2428 },
2429 })
2430 }
2431 _ => Err(fidl::Error::UnknownOrdinal {
2432 ordinal: header.ordinal,
2433 protocol_name:
2434 <PeerManagerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
2435 }),
2436 }))
2437 },
2438 )
2439 }
2440}
2441
2442#[derive(Debug)]
2444pub enum PeerManagerRequest {
2445 GetPeer {
2449 peer_id: fidl_fuchsia_bluetooth::PeerId,
2450 handle: fidl::endpoints::ServerEnd<PeerControllerMarker>,
2451 control_handle: PeerManagerControlHandle,
2452 },
2453 ConnectedPeers { responder: PeerManagerConnectedPeersResponder },
2455}
2456
2457impl PeerManagerRequest {
2458 #[allow(irrefutable_let_patterns)]
2459 pub fn into_get_peer(
2460 self,
2461 ) -> Option<(
2462 fidl_fuchsia_bluetooth::PeerId,
2463 fidl::endpoints::ServerEnd<PeerControllerMarker>,
2464 PeerManagerControlHandle,
2465 )> {
2466 if let PeerManagerRequest::GetPeer { peer_id, handle, control_handle } = self {
2467 Some((peer_id, handle, control_handle))
2468 } else {
2469 None
2470 }
2471 }
2472
2473 #[allow(irrefutable_let_patterns)]
2474 pub fn into_connected_peers(self) -> Option<(PeerManagerConnectedPeersResponder)> {
2475 if let PeerManagerRequest::ConnectedPeers { responder } = self {
2476 Some((responder))
2477 } else {
2478 None
2479 }
2480 }
2481
2482 pub fn method_name(&self) -> &'static str {
2484 match *self {
2485 PeerManagerRequest::GetPeer { .. } => "get_peer",
2486 PeerManagerRequest::ConnectedPeers { .. } => "connected_peers",
2487 }
2488 }
2489}
2490
2491#[derive(Debug, Clone)]
2492pub struct PeerManagerControlHandle {
2493 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
2494}
2495
2496impl fidl::endpoints::ControlHandle for PeerManagerControlHandle {
2497 fn shutdown(&self) {
2498 self.inner.shutdown()
2499 }
2500 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
2501 self.inner.shutdown_with_epitaph(status)
2502 }
2503
2504 fn is_closed(&self) -> bool {
2505 self.inner.channel().is_closed()
2506 }
2507 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
2508 self.inner.channel().on_closed()
2509 }
2510
2511 #[cfg(target_os = "fuchsia")]
2512 fn signal_peer(
2513 &self,
2514 clear_mask: zx::Signals,
2515 set_mask: zx::Signals,
2516 ) -> Result<(), zx_status::Status> {
2517 use fidl::Peered;
2518 self.inner.channel().signal_peer(clear_mask, set_mask)
2519 }
2520}
2521
2522impl PeerManagerControlHandle {
2523 pub fn send_on_peer_connected(
2524 &self,
2525 mut peer_id: &fidl_fuchsia_bluetooth::PeerId,
2526 ) -> Result<(), fidl::Error> {
2527 self.inner.send::<PeerManagerOnPeerConnectedRequest>(
2528 (peer_id,),
2529 0,
2530 0x154e6b9e519774d1,
2531 fidl::encoding::DynamicFlags::empty(),
2532 )
2533 }
2534}
2535
2536#[must_use = "FIDL methods require a response to be sent"]
2537#[derive(Debug)]
2538pub struct PeerManagerConnectedPeersResponder {
2539 control_handle: std::mem::ManuallyDrop<PeerManagerControlHandle>,
2540 tx_id: u32,
2541}
2542
2543impl std::ops::Drop for PeerManagerConnectedPeersResponder {
2547 fn drop(&mut self) {
2548 self.control_handle.shutdown();
2549 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2551 }
2552}
2553
2554impl fidl::endpoints::Responder for PeerManagerConnectedPeersResponder {
2555 type ControlHandle = PeerManagerControlHandle;
2556
2557 fn control_handle(&self) -> &PeerManagerControlHandle {
2558 &self.control_handle
2559 }
2560
2561 fn drop_without_shutdown(mut self) {
2562 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2564 std::mem::forget(self);
2566 }
2567}
2568
2569impl PeerManagerConnectedPeersResponder {
2570 pub fn send(self, mut peer_ids: &[fidl_fuchsia_bluetooth::PeerId]) -> Result<(), fidl::Error> {
2574 let _result = self.send_raw(peer_ids);
2575 if _result.is_err() {
2576 self.control_handle.shutdown();
2577 }
2578 self.drop_without_shutdown();
2579 _result
2580 }
2581
2582 pub fn send_no_shutdown_on_err(
2584 self,
2585 mut peer_ids: &[fidl_fuchsia_bluetooth::PeerId],
2586 ) -> Result<(), fidl::Error> {
2587 let _result = self.send_raw(peer_ids);
2588 self.drop_without_shutdown();
2589 _result
2590 }
2591
2592 fn send_raw(&self, mut peer_ids: &[fidl_fuchsia_bluetooth::PeerId]) -> Result<(), fidl::Error> {
2593 self.control_handle.inner.send::<PeerManagerConnectedPeersResponse>(
2594 (peer_ids,),
2595 self.tx_id,
2596 0x1deaca0295d5f8d6,
2597 fidl::encoding::DynamicFlags::empty(),
2598 )
2599 }
2600}
2601
2602mod internal {
2603 use super::*;
2604
2605 impl fidl::encoding::ResourceTypeMarker for PeerManagerGetPeerRequest {
2606 type Borrowed<'a> = &'a mut Self;
2607 fn take_or_borrow<'a>(
2608 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
2609 ) -> Self::Borrowed<'a> {
2610 value
2611 }
2612 }
2613
2614 unsafe impl fidl::encoding::TypeMarker for PeerManagerGetPeerRequest {
2615 type Owned = Self;
2616
2617 #[inline(always)]
2618 fn inline_align(_context: fidl::encoding::Context) -> usize {
2619 8
2620 }
2621
2622 #[inline(always)]
2623 fn inline_size(_context: fidl::encoding::Context) -> usize {
2624 16
2625 }
2626 }
2627
2628 unsafe impl
2629 fidl::encoding::Encode<
2630 PeerManagerGetPeerRequest,
2631 fidl::encoding::DefaultFuchsiaResourceDialect,
2632 > for &mut PeerManagerGetPeerRequest
2633 {
2634 #[inline]
2635 unsafe fn encode(
2636 self,
2637 encoder: &mut fidl::encoding::Encoder<
2638 '_,
2639 fidl::encoding::DefaultFuchsiaResourceDialect,
2640 >,
2641 offset: usize,
2642 _depth: fidl::encoding::Depth,
2643 ) -> fidl::Result<()> {
2644 encoder.debug_check_bounds::<PeerManagerGetPeerRequest>(offset);
2645 fidl::encoding::Encode::<PeerManagerGetPeerRequest, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
2647 (
2648 <fidl_fuchsia_bluetooth::PeerId as fidl::encoding::ValueTypeMarker>::borrow(&self.peer_id),
2649 <fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<PeerControllerMarker>> as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.handle),
2650 ),
2651 encoder, offset, _depth
2652 )
2653 }
2654 }
2655 unsafe impl<
2656 T0: fidl::encoding::Encode<
2657 fidl_fuchsia_bluetooth::PeerId,
2658 fidl::encoding::DefaultFuchsiaResourceDialect,
2659 >,
2660 T1: fidl::encoding::Encode<
2661 fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<PeerControllerMarker>>,
2662 fidl::encoding::DefaultFuchsiaResourceDialect,
2663 >,
2664 >
2665 fidl::encoding::Encode<
2666 PeerManagerGetPeerRequest,
2667 fidl::encoding::DefaultFuchsiaResourceDialect,
2668 > for (T0, T1)
2669 {
2670 #[inline]
2671 unsafe fn encode(
2672 self,
2673 encoder: &mut fidl::encoding::Encoder<
2674 '_,
2675 fidl::encoding::DefaultFuchsiaResourceDialect,
2676 >,
2677 offset: usize,
2678 depth: fidl::encoding::Depth,
2679 ) -> fidl::Result<()> {
2680 encoder.debug_check_bounds::<PeerManagerGetPeerRequest>(offset);
2681 unsafe {
2684 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(8);
2685 (ptr as *mut u64).write_unaligned(0);
2686 }
2687 self.0.encode(encoder, offset + 0, depth)?;
2689 self.1.encode(encoder, offset + 8, depth)?;
2690 Ok(())
2691 }
2692 }
2693
2694 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
2695 for PeerManagerGetPeerRequest
2696 {
2697 #[inline(always)]
2698 fn new_empty() -> Self {
2699 Self {
2700 peer_id: fidl::new_empty!(
2701 fidl_fuchsia_bluetooth::PeerId,
2702 fidl::encoding::DefaultFuchsiaResourceDialect
2703 ),
2704 handle: fidl::new_empty!(
2705 fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<PeerControllerMarker>>,
2706 fidl::encoding::DefaultFuchsiaResourceDialect
2707 ),
2708 }
2709 }
2710
2711 #[inline]
2712 unsafe fn decode(
2713 &mut self,
2714 decoder: &mut fidl::encoding::Decoder<
2715 '_,
2716 fidl::encoding::DefaultFuchsiaResourceDialect,
2717 >,
2718 offset: usize,
2719 _depth: fidl::encoding::Depth,
2720 ) -> fidl::Result<()> {
2721 decoder.debug_check_bounds::<Self>(offset);
2722 let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(8) };
2724 let padval = unsafe { (ptr as *const u64).read_unaligned() };
2725 let mask = 0xffffffff00000000u64;
2726 let maskedval = padval & mask;
2727 if maskedval != 0 {
2728 return Err(fidl::Error::NonZeroPadding {
2729 padding_start: offset + 8 + ((mask as u64).trailing_zeros() / 8) as usize,
2730 });
2731 }
2732 fidl::decode!(
2733 fidl_fuchsia_bluetooth::PeerId,
2734 fidl::encoding::DefaultFuchsiaResourceDialect,
2735 &mut self.peer_id,
2736 decoder,
2737 offset + 0,
2738 _depth
2739 )?;
2740 fidl::decode!(
2741 fidl::encoding::Endpoint<fidl::endpoints::ServerEnd<PeerControllerMarker>>,
2742 fidl::encoding::DefaultFuchsiaResourceDialect,
2743 &mut self.handle,
2744 decoder,
2745 offset + 8,
2746 _depth
2747 )?;
2748 Ok(())
2749 }
2750 }
2751}