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_compat_runtime_test_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct LeafMarker;
16
17impl fidl::endpoints::ProtocolMarker for LeafMarker {
18 type Proxy = LeafProxy;
19 type RequestStream = LeafRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = LeafSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "(anonymous) Leaf";
24}
25
26pub trait LeafProxyInterface: Send + Sync {
27 type GetStringResponseFut: std::future::Future<Output = Result<String, fidl::Error>> + Send;
28 fn r#get_string(&self) -> Self::GetStringResponseFut;
29}
30#[derive(Debug)]
31#[cfg(target_os = "fuchsia")]
32pub struct LeafSynchronousProxy {
33 client: fidl::client::sync::Client,
34}
35
36#[cfg(target_os = "fuchsia")]
37impl fidl::endpoints::SynchronousProxy for LeafSynchronousProxy {
38 type Proxy = LeafProxy;
39 type Protocol = LeafMarker;
40
41 fn from_channel(inner: fidl::Channel) -> Self {
42 Self::new(inner)
43 }
44
45 fn into_channel(self) -> fidl::Channel {
46 self.client.into_channel()
47 }
48
49 fn as_channel(&self) -> &fidl::Channel {
50 self.client.as_channel()
51 }
52}
53
54#[cfg(target_os = "fuchsia")]
55impl LeafSynchronousProxy {
56 pub fn new(channel: fidl::Channel) -> Self {
57 let protocol_name = <LeafMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
58 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
59 }
60
61 pub fn into_channel(self) -> fidl::Channel {
62 self.client.into_channel()
63 }
64
65 pub fn wait_for_event(&self, deadline: zx::MonotonicInstant) -> Result<LeafEvent, fidl::Error> {
68 LeafEvent::decode(self.client.wait_for_event(deadline)?)
69 }
70
71 pub fn r#get_string(&self, ___deadline: zx::MonotonicInstant) -> Result<String, fidl::Error> {
72 let _response =
73 self.client.send_query::<fidl::encoding::EmptyPayload, LeafGetStringResponse>(
74 (),
75 0x765999b3a5e5cbcc,
76 fidl::encoding::DynamicFlags::empty(),
77 ___deadline,
78 )?;
79 Ok(_response.response)
80 }
81}
82
83#[cfg(target_os = "fuchsia")]
84impl From<LeafSynchronousProxy> for zx::Handle {
85 fn from(value: LeafSynchronousProxy) -> Self {
86 value.into_channel().into()
87 }
88}
89
90#[cfg(target_os = "fuchsia")]
91impl From<fidl::Channel> for LeafSynchronousProxy {
92 fn from(value: fidl::Channel) -> Self {
93 Self::new(value)
94 }
95}
96
97#[derive(Debug, Clone)]
98pub struct LeafProxy {
99 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
100}
101
102impl fidl::endpoints::Proxy for LeafProxy {
103 type Protocol = LeafMarker;
104
105 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
106 Self::new(inner)
107 }
108
109 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
110 self.client.into_channel().map_err(|client| Self { client })
111 }
112
113 fn as_channel(&self) -> &::fidl::AsyncChannel {
114 self.client.as_channel()
115 }
116}
117
118impl LeafProxy {
119 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
121 let protocol_name = <LeafMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
122 Self { client: fidl::client::Client::new(channel, protocol_name) }
123 }
124
125 pub fn take_event_stream(&self) -> LeafEventStream {
131 LeafEventStream { event_receiver: self.client.take_event_receiver() }
132 }
133
134 pub fn r#get_string(
135 &self,
136 ) -> fidl::client::QueryResponseFut<String, fidl::encoding::DefaultFuchsiaResourceDialect> {
137 LeafProxyInterface::r#get_string(self)
138 }
139}
140
141impl LeafProxyInterface for LeafProxy {
142 type GetStringResponseFut =
143 fidl::client::QueryResponseFut<String, fidl::encoding::DefaultFuchsiaResourceDialect>;
144 fn r#get_string(&self) -> Self::GetStringResponseFut {
145 fn _decode(
146 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
147 ) -> Result<String, fidl::Error> {
148 let _response = fidl::client::decode_transaction_body::<
149 LeafGetStringResponse,
150 fidl::encoding::DefaultFuchsiaResourceDialect,
151 0x765999b3a5e5cbcc,
152 >(_buf?)?;
153 Ok(_response.response)
154 }
155 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, String>(
156 (),
157 0x765999b3a5e5cbcc,
158 fidl::encoding::DynamicFlags::empty(),
159 _decode,
160 )
161 }
162}
163
164pub struct LeafEventStream {
165 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
166}
167
168impl std::marker::Unpin for LeafEventStream {}
169
170impl futures::stream::FusedStream for LeafEventStream {
171 fn is_terminated(&self) -> bool {
172 self.event_receiver.is_terminated()
173 }
174}
175
176impl futures::Stream for LeafEventStream {
177 type Item = Result<LeafEvent, fidl::Error>;
178
179 fn poll_next(
180 mut self: std::pin::Pin<&mut Self>,
181 cx: &mut std::task::Context<'_>,
182 ) -> std::task::Poll<Option<Self::Item>> {
183 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
184 &mut self.event_receiver,
185 cx
186 )?) {
187 Some(buf) => std::task::Poll::Ready(Some(LeafEvent::decode(buf))),
188 None => std::task::Poll::Ready(None),
189 }
190 }
191}
192
193#[derive(Debug)]
194pub enum LeafEvent {}
195
196impl LeafEvent {
197 fn decode(
199 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
200 ) -> Result<LeafEvent, fidl::Error> {
201 let (bytes, _handles) = buf.split_mut();
202 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
203 debug_assert_eq!(tx_header.tx_id, 0);
204 match tx_header.ordinal {
205 _ => Err(fidl::Error::UnknownOrdinal {
206 ordinal: tx_header.ordinal,
207 protocol_name: <LeafMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
208 }),
209 }
210 }
211}
212
213pub struct LeafRequestStream {
215 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
216 is_terminated: bool,
217}
218
219impl std::marker::Unpin for LeafRequestStream {}
220
221impl futures::stream::FusedStream for LeafRequestStream {
222 fn is_terminated(&self) -> bool {
223 self.is_terminated
224 }
225}
226
227impl fidl::endpoints::RequestStream for LeafRequestStream {
228 type Protocol = LeafMarker;
229 type ControlHandle = LeafControlHandle;
230
231 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
232 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
233 }
234
235 fn control_handle(&self) -> Self::ControlHandle {
236 LeafControlHandle { inner: self.inner.clone() }
237 }
238
239 fn into_inner(
240 self,
241 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
242 {
243 (self.inner, self.is_terminated)
244 }
245
246 fn from_inner(
247 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
248 is_terminated: bool,
249 ) -> Self {
250 Self { inner, is_terminated }
251 }
252}
253
254impl futures::Stream for LeafRequestStream {
255 type Item = Result<LeafRequest, fidl::Error>;
256
257 fn poll_next(
258 mut self: std::pin::Pin<&mut Self>,
259 cx: &mut std::task::Context<'_>,
260 ) -> std::task::Poll<Option<Self::Item>> {
261 let this = &mut *self;
262 if this.inner.check_shutdown(cx) {
263 this.is_terminated = true;
264 return std::task::Poll::Ready(None);
265 }
266 if this.is_terminated {
267 panic!("polled LeafRequestStream after completion");
268 }
269 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
270 |bytes, handles| {
271 match this.inner.channel().read_etc(cx, bytes, handles) {
272 std::task::Poll::Ready(Ok(())) => {}
273 std::task::Poll::Pending => return std::task::Poll::Pending,
274 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
275 this.is_terminated = true;
276 return std::task::Poll::Ready(None);
277 }
278 std::task::Poll::Ready(Err(e)) => {
279 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
280 e.into(),
281 ))))
282 }
283 }
284
285 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
287
288 std::task::Poll::Ready(Some(match header.ordinal {
289 0x765999b3a5e5cbcc => {
290 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
291 let mut req = fidl::new_empty!(
292 fidl::encoding::EmptyPayload,
293 fidl::encoding::DefaultFuchsiaResourceDialect
294 );
295 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
296 let control_handle = LeafControlHandle { inner: this.inner.clone() };
297 Ok(LeafRequest::GetString {
298 responder: LeafGetStringResponder {
299 control_handle: std::mem::ManuallyDrop::new(control_handle),
300 tx_id: header.tx_id,
301 },
302 })
303 }
304 _ => Err(fidl::Error::UnknownOrdinal {
305 ordinal: header.ordinal,
306 protocol_name: <LeafMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
307 }),
308 }))
309 },
310 )
311 }
312}
313
314#[derive(Debug)]
315pub enum LeafRequest {
316 GetString { responder: LeafGetStringResponder },
317}
318
319impl LeafRequest {
320 #[allow(irrefutable_let_patterns)]
321 pub fn into_get_string(self) -> Option<(LeafGetStringResponder)> {
322 if let LeafRequest::GetString { responder } = self {
323 Some((responder))
324 } else {
325 None
326 }
327 }
328
329 pub fn method_name(&self) -> &'static str {
331 match *self {
332 LeafRequest::GetString { .. } => "get_string",
333 }
334 }
335}
336
337#[derive(Debug, Clone)]
338pub struct LeafControlHandle {
339 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
340}
341
342impl fidl::endpoints::ControlHandle for LeafControlHandle {
343 fn shutdown(&self) {
344 self.inner.shutdown()
345 }
346 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
347 self.inner.shutdown_with_epitaph(status)
348 }
349
350 fn is_closed(&self) -> bool {
351 self.inner.channel().is_closed()
352 }
353 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
354 self.inner.channel().on_closed()
355 }
356
357 #[cfg(target_os = "fuchsia")]
358 fn signal_peer(
359 &self,
360 clear_mask: zx::Signals,
361 set_mask: zx::Signals,
362 ) -> Result<(), zx_status::Status> {
363 use fidl::Peered;
364 self.inner.channel().signal_peer(clear_mask, set_mask)
365 }
366}
367
368impl LeafControlHandle {}
369
370#[must_use = "FIDL methods require a response to be sent"]
371#[derive(Debug)]
372pub struct LeafGetStringResponder {
373 control_handle: std::mem::ManuallyDrop<LeafControlHandle>,
374 tx_id: u32,
375}
376
377impl std::ops::Drop for LeafGetStringResponder {
381 fn drop(&mut self) {
382 self.control_handle.shutdown();
383 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
385 }
386}
387
388impl fidl::endpoints::Responder for LeafGetStringResponder {
389 type ControlHandle = LeafControlHandle;
390
391 fn control_handle(&self) -> &LeafControlHandle {
392 &self.control_handle
393 }
394
395 fn drop_without_shutdown(mut self) {
396 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
398 std::mem::forget(self);
400 }
401}
402
403impl LeafGetStringResponder {
404 pub fn send(self, mut response: &str) -> Result<(), fidl::Error> {
408 let _result = self.send_raw(response);
409 if _result.is_err() {
410 self.control_handle.shutdown();
411 }
412 self.drop_without_shutdown();
413 _result
414 }
415
416 pub fn send_no_shutdown_on_err(self, mut response: &str) -> Result<(), fidl::Error> {
418 let _result = self.send_raw(response);
419 self.drop_without_shutdown();
420 _result
421 }
422
423 fn send_raw(&self, mut response: &str) -> Result<(), fidl::Error> {
424 self.control_handle.inner.send::<LeafGetStringResponse>(
425 (response,),
426 self.tx_id,
427 0x765999b3a5e5cbcc,
428 fidl::encoding::DynamicFlags::empty(),
429 )
430 }
431}
432
433#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
434pub struct WaiterMarker;
435
436impl fidl::endpoints::ProtocolMarker for WaiterMarker {
437 type Proxy = WaiterProxy;
438 type RequestStream = WaiterRequestStream;
439 #[cfg(target_os = "fuchsia")]
440 type SynchronousProxy = WaiterSynchronousProxy;
441
442 const DEBUG_NAME: &'static str = "fuchsia.compat.runtime.test.Waiter";
443}
444impl fidl::endpoints::DiscoverableProtocolMarker for WaiterMarker {}
445
446pub trait WaiterProxyInterface: Send + Sync {
447 fn r#ack(&self) -> Result<(), fidl::Error>;
448}
449#[derive(Debug)]
450#[cfg(target_os = "fuchsia")]
451pub struct WaiterSynchronousProxy {
452 client: fidl::client::sync::Client,
453}
454
455#[cfg(target_os = "fuchsia")]
456impl fidl::endpoints::SynchronousProxy for WaiterSynchronousProxy {
457 type Proxy = WaiterProxy;
458 type Protocol = WaiterMarker;
459
460 fn from_channel(inner: fidl::Channel) -> Self {
461 Self::new(inner)
462 }
463
464 fn into_channel(self) -> fidl::Channel {
465 self.client.into_channel()
466 }
467
468 fn as_channel(&self) -> &fidl::Channel {
469 self.client.as_channel()
470 }
471}
472
473#[cfg(target_os = "fuchsia")]
474impl WaiterSynchronousProxy {
475 pub fn new(channel: fidl::Channel) -> Self {
476 let protocol_name = <WaiterMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
477 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
478 }
479
480 pub fn into_channel(self) -> fidl::Channel {
481 self.client.into_channel()
482 }
483
484 pub fn wait_for_event(
487 &self,
488 deadline: zx::MonotonicInstant,
489 ) -> Result<WaiterEvent, fidl::Error> {
490 WaiterEvent::decode(self.client.wait_for_event(deadline)?)
491 }
492
493 pub fn r#ack(&self) -> Result<(), fidl::Error> {
494 self.client.send::<fidl::encoding::EmptyPayload>(
495 (),
496 0x37380907dd9472fa,
497 fidl::encoding::DynamicFlags::empty(),
498 )
499 }
500}
501
502#[cfg(target_os = "fuchsia")]
503impl From<WaiterSynchronousProxy> for zx::Handle {
504 fn from(value: WaiterSynchronousProxy) -> Self {
505 value.into_channel().into()
506 }
507}
508
509#[cfg(target_os = "fuchsia")]
510impl From<fidl::Channel> for WaiterSynchronousProxy {
511 fn from(value: fidl::Channel) -> Self {
512 Self::new(value)
513 }
514}
515
516#[derive(Debug, Clone)]
517pub struct WaiterProxy {
518 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
519}
520
521impl fidl::endpoints::Proxy for WaiterProxy {
522 type Protocol = WaiterMarker;
523
524 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
525 Self::new(inner)
526 }
527
528 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
529 self.client.into_channel().map_err(|client| Self { client })
530 }
531
532 fn as_channel(&self) -> &::fidl::AsyncChannel {
533 self.client.as_channel()
534 }
535}
536
537impl WaiterProxy {
538 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
540 let protocol_name = <WaiterMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
541 Self { client: fidl::client::Client::new(channel, protocol_name) }
542 }
543
544 pub fn take_event_stream(&self) -> WaiterEventStream {
550 WaiterEventStream { event_receiver: self.client.take_event_receiver() }
551 }
552
553 pub fn r#ack(&self) -> Result<(), fidl::Error> {
554 WaiterProxyInterface::r#ack(self)
555 }
556}
557
558impl WaiterProxyInterface for WaiterProxy {
559 fn r#ack(&self) -> Result<(), fidl::Error> {
560 self.client.send::<fidl::encoding::EmptyPayload>(
561 (),
562 0x37380907dd9472fa,
563 fidl::encoding::DynamicFlags::empty(),
564 )
565 }
566}
567
568pub struct WaiterEventStream {
569 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
570}
571
572impl std::marker::Unpin for WaiterEventStream {}
573
574impl futures::stream::FusedStream for WaiterEventStream {
575 fn is_terminated(&self) -> bool {
576 self.event_receiver.is_terminated()
577 }
578}
579
580impl futures::Stream for WaiterEventStream {
581 type Item = Result<WaiterEvent, fidl::Error>;
582
583 fn poll_next(
584 mut self: std::pin::Pin<&mut Self>,
585 cx: &mut std::task::Context<'_>,
586 ) -> std::task::Poll<Option<Self::Item>> {
587 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
588 &mut self.event_receiver,
589 cx
590 )?) {
591 Some(buf) => std::task::Poll::Ready(Some(WaiterEvent::decode(buf))),
592 None => std::task::Poll::Ready(None),
593 }
594 }
595}
596
597#[derive(Debug)]
598pub enum WaiterEvent {}
599
600impl WaiterEvent {
601 fn decode(
603 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
604 ) -> Result<WaiterEvent, fidl::Error> {
605 let (bytes, _handles) = buf.split_mut();
606 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
607 debug_assert_eq!(tx_header.tx_id, 0);
608 match tx_header.ordinal {
609 _ => Err(fidl::Error::UnknownOrdinal {
610 ordinal: tx_header.ordinal,
611 protocol_name: <WaiterMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
612 }),
613 }
614 }
615}
616
617pub struct WaiterRequestStream {
619 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
620 is_terminated: bool,
621}
622
623impl std::marker::Unpin for WaiterRequestStream {}
624
625impl futures::stream::FusedStream for WaiterRequestStream {
626 fn is_terminated(&self) -> bool {
627 self.is_terminated
628 }
629}
630
631impl fidl::endpoints::RequestStream for WaiterRequestStream {
632 type Protocol = WaiterMarker;
633 type ControlHandle = WaiterControlHandle;
634
635 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
636 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
637 }
638
639 fn control_handle(&self) -> Self::ControlHandle {
640 WaiterControlHandle { inner: self.inner.clone() }
641 }
642
643 fn into_inner(
644 self,
645 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
646 {
647 (self.inner, self.is_terminated)
648 }
649
650 fn from_inner(
651 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
652 is_terminated: bool,
653 ) -> Self {
654 Self { inner, is_terminated }
655 }
656}
657
658impl futures::Stream for WaiterRequestStream {
659 type Item = Result<WaiterRequest, fidl::Error>;
660
661 fn poll_next(
662 mut self: std::pin::Pin<&mut Self>,
663 cx: &mut std::task::Context<'_>,
664 ) -> std::task::Poll<Option<Self::Item>> {
665 let this = &mut *self;
666 if this.inner.check_shutdown(cx) {
667 this.is_terminated = true;
668 return std::task::Poll::Ready(None);
669 }
670 if this.is_terminated {
671 panic!("polled WaiterRequestStream after completion");
672 }
673 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
674 |bytes, handles| {
675 match this.inner.channel().read_etc(cx, bytes, handles) {
676 std::task::Poll::Ready(Ok(())) => {}
677 std::task::Poll::Pending => return std::task::Poll::Pending,
678 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
679 this.is_terminated = true;
680 return std::task::Poll::Ready(None);
681 }
682 std::task::Poll::Ready(Err(e)) => {
683 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
684 e.into(),
685 ))))
686 }
687 }
688
689 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
691
692 std::task::Poll::Ready(Some(match header.ordinal {
693 0x37380907dd9472fa => {
694 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
695 let mut req = fidl::new_empty!(
696 fidl::encoding::EmptyPayload,
697 fidl::encoding::DefaultFuchsiaResourceDialect
698 );
699 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
700 let control_handle = WaiterControlHandle { inner: this.inner.clone() };
701 Ok(WaiterRequest::Ack { control_handle })
702 }
703 _ => Err(fidl::Error::UnknownOrdinal {
704 ordinal: header.ordinal,
705 protocol_name:
706 <WaiterMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
707 }),
708 }))
709 },
710 )
711 }
712}
713
714#[derive(Debug)]
715pub enum WaiterRequest {
716 Ack { control_handle: WaiterControlHandle },
717}
718
719impl WaiterRequest {
720 #[allow(irrefutable_let_patterns)]
721 pub fn into_ack(self) -> Option<(WaiterControlHandle)> {
722 if let WaiterRequest::Ack { control_handle } = self {
723 Some((control_handle))
724 } else {
725 None
726 }
727 }
728
729 pub fn method_name(&self) -> &'static str {
731 match *self {
732 WaiterRequest::Ack { .. } => "ack",
733 }
734 }
735}
736
737#[derive(Debug, Clone)]
738pub struct WaiterControlHandle {
739 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
740}
741
742impl fidl::endpoints::ControlHandle for WaiterControlHandle {
743 fn shutdown(&self) {
744 self.inner.shutdown()
745 }
746 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
747 self.inner.shutdown_with_epitaph(status)
748 }
749
750 fn is_closed(&self) -> bool {
751 self.inner.channel().is_closed()
752 }
753 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
754 self.inner.channel().on_closed()
755 }
756
757 #[cfg(target_os = "fuchsia")]
758 fn signal_peer(
759 &self,
760 clear_mask: zx::Signals,
761 set_mask: zx::Signals,
762 ) -> Result<(), zx_status::Status> {
763 use fidl::Peered;
764 self.inner.channel().signal_peer(clear_mask, set_mask)
765 }
766}
767
768impl WaiterControlHandle {}
769
770mod internal {
771 use super::*;
772}