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_settings_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct AccessibilityMarker;
16
17impl fidl::endpoints::ProtocolMarker for AccessibilityMarker {
18 type Proxy = AccessibilityProxy;
19 type RequestStream = AccessibilityRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = AccessibilitySynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "fuchsia.settings.Accessibility";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for AccessibilityMarker {}
26pub type AccessibilitySetResult = Result<(), Error>;
27
28pub trait AccessibilityProxyInterface: Send + Sync {
29 type WatchResponseFut: std::future::Future<Output = Result<AccessibilitySettings, fidl::Error>>
30 + Send;
31 fn r#watch(&self) -> Self::WatchResponseFut;
32 type SetResponseFut: std::future::Future<Output = Result<AccessibilitySetResult, fidl::Error>>
33 + Send;
34 fn r#set(&self, settings: &AccessibilitySettings) -> Self::SetResponseFut;
35}
36#[derive(Debug)]
37#[cfg(target_os = "fuchsia")]
38pub struct AccessibilitySynchronousProxy {
39 client: fidl::client::sync::Client,
40}
41
42#[cfg(target_os = "fuchsia")]
43impl fidl::endpoints::SynchronousProxy for AccessibilitySynchronousProxy {
44 type Proxy = AccessibilityProxy;
45 type Protocol = AccessibilityMarker;
46
47 fn from_channel(inner: fidl::Channel) -> Self {
48 Self::new(inner)
49 }
50
51 fn into_channel(self) -> fidl::Channel {
52 self.client.into_channel()
53 }
54
55 fn as_channel(&self) -> &fidl::Channel {
56 self.client.as_channel()
57 }
58}
59
60#[cfg(target_os = "fuchsia")]
61impl AccessibilitySynchronousProxy {
62 pub fn new(channel: fidl::Channel) -> Self {
63 let protocol_name = <AccessibilityMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
64 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
65 }
66
67 pub fn into_channel(self) -> fidl::Channel {
68 self.client.into_channel()
69 }
70
71 pub fn wait_for_event(
74 &self,
75 deadline: zx::MonotonicInstant,
76 ) -> Result<AccessibilityEvent, fidl::Error> {
77 AccessibilityEvent::decode(self.client.wait_for_event(deadline)?)
78 }
79
80 pub fn r#watch(
90 &self,
91 ___deadline: zx::MonotonicInstant,
92 ) -> Result<AccessibilitySettings, fidl::Error> {
93 let _response =
94 self.client.send_query::<fidl::encoding::EmptyPayload, AccessibilityWatchResponse>(
95 (),
96 0x417d0b95ddbf7674,
97 fidl::encoding::DynamicFlags::empty(),
98 ___deadline,
99 )?;
100 Ok(_response.settings)
101 }
102
103 pub fn r#set(
106 &self,
107 mut settings: &AccessibilitySettings,
108 ___deadline: zx::MonotonicInstant,
109 ) -> Result<AccessibilitySetResult, fidl::Error> {
110 let _response = self.client.send_query::<
111 AccessibilitySetRequest,
112 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
113 >(
114 (settings,),
115 0x298485ef354fb8cb,
116 fidl::encoding::DynamicFlags::empty(),
117 ___deadline,
118 )?;
119 Ok(_response.map(|x| x))
120 }
121}
122
123#[cfg(target_os = "fuchsia")]
124impl From<AccessibilitySynchronousProxy> for zx::Handle {
125 fn from(value: AccessibilitySynchronousProxy) -> Self {
126 value.into_channel().into()
127 }
128}
129
130#[cfg(target_os = "fuchsia")]
131impl From<fidl::Channel> for AccessibilitySynchronousProxy {
132 fn from(value: fidl::Channel) -> Self {
133 Self::new(value)
134 }
135}
136
137#[derive(Debug, Clone)]
138pub struct AccessibilityProxy {
139 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
140}
141
142impl fidl::endpoints::Proxy for AccessibilityProxy {
143 type Protocol = AccessibilityMarker;
144
145 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
146 Self::new(inner)
147 }
148
149 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
150 self.client.into_channel().map_err(|client| Self { client })
151 }
152
153 fn as_channel(&self) -> &::fidl::AsyncChannel {
154 self.client.as_channel()
155 }
156}
157
158impl AccessibilityProxy {
159 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
161 let protocol_name = <AccessibilityMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
162 Self { client: fidl::client::Client::new(channel, protocol_name) }
163 }
164
165 pub fn take_event_stream(&self) -> AccessibilityEventStream {
171 AccessibilityEventStream { event_receiver: self.client.take_event_receiver() }
172 }
173
174 pub fn r#watch(
184 &self,
185 ) -> fidl::client::QueryResponseFut<
186 AccessibilitySettings,
187 fidl::encoding::DefaultFuchsiaResourceDialect,
188 > {
189 AccessibilityProxyInterface::r#watch(self)
190 }
191
192 pub fn r#set(
195 &self,
196 mut settings: &AccessibilitySettings,
197 ) -> fidl::client::QueryResponseFut<
198 AccessibilitySetResult,
199 fidl::encoding::DefaultFuchsiaResourceDialect,
200 > {
201 AccessibilityProxyInterface::r#set(self, settings)
202 }
203}
204
205impl AccessibilityProxyInterface for AccessibilityProxy {
206 type WatchResponseFut = fidl::client::QueryResponseFut<
207 AccessibilitySettings,
208 fidl::encoding::DefaultFuchsiaResourceDialect,
209 >;
210 fn r#watch(&self) -> Self::WatchResponseFut {
211 fn _decode(
212 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
213 ) -> Result<AccessibilitySettings, fidl::Error> {
214 let _response = fidl::client::decode_transaction_body::<
215 AccessibilityWatchResponse,
216 fidl::encoding::DefaultFuchsiaResourceDialect,
217 0x417d0b95ddbf7674,
218 >(_buf?)?;
219 Ok(_response.settings)
220 }
221 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, AccessibilitySettings>(
222 (),
223 0x417d0b95ddbf7674,
224 fidl::encoding::DynamicFlags::empty(),
225 _decode,
226 )
227 }
228
229 type SetResponseFut = fidl::client::QueryResponseFut<
230 AccessibilitySetResult,
231 fidl::encoding::DefaultFuchsiaResourceDialect,
232 >;
233 fn r#set(&self, mut settings: &AccessibilitySettings) -> Self::SetResponseFut {
234 fn _decode(
235 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
236 ) -> Result<AccessibilitySetResult, fidl::Error> {
237 let _response = fidl::client::decode_transaction_body::<
238 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
239 fidl::encoding::DefaultFuchsiaResourceDialect,
240 0x298485ef354fb8cb,
241 >(_buf?)?;
242 Ok(_response.map(|x| x))
243 }
244 self.client.send_query_and_decode::<AccessibilitySetRequest, AccessibilitySetResult>(
245 (settings,),
246 0x298485ef354fb8cb,
247 fidl::encoding::DynamicFlags::empty(),
248 _decode,
249 )
250 }
251}
252
253pub struct AccessibilityEventStream {
254 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
255}
256
257impl std::marker::Unpin for AccessibilityEventStream {}
258
259impl futures::stream::FusedStream for AccessibilityEventStream {
260 fn is_terminated(&self) -> bool {
261 self.event_receiver.is_terminated()
262 }
263}
264
265impl futures::Stream for AccessibilityEventStream {
266 type Item = Result<AccessibilityEvent, fidl::Error>;
267
268 fn poll_next(
269 mut self: std::pin::Pin<&mut Self>,
270 cx: &mut std::task::Context<'_>,
271 ) -> std::task::Poll<Option<Self::Item>> {
272 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
273 &mut self.event_receiver,
274 cx
275 )?) {
276 Some(buf) => std::task::Poll::Ready(Some(AccessibilityEvent::decode(buf))),
277 None => std::task::Poll::Ready(None),
278 }
279 }
280}
281
282#[derive(Debug)]
283pub enum AccessibilityEvent {}
284
285impl AccessibilityEvent {
286 fn decode(
288 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
289 ) -> Result<AccessibilityEvent, fidl::Error> {
290 let (bytes, _handles) = buf.split_mut();
291 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
292 debug_assert_eq!(tx_header.tx_id, 0);
293 match tx_header.ordinal {
294 _ => Err(fidl::Error::UnknownOrdinal {
295 ordinal: tx_header.ordinal,
296 protocol_name: <AccessibilityMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
297 }),
298 }
299 }
300}
301
302pub struct AccessibilityRequestStream {
304 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
305 is_terminated: bool,
306}
307
308impl std::marker::Unpin for AccessibilityRequestStream {}
309
310impl futures::stream::FusedStream for AccessibilityRequestStream {
311 fn is_terminated(&self) -> bool {
312 self.is_terminated
313 }
314}
315
316impl fidl::endpoints::RequestStream for AccessibilityRequestStream {
317 type Protocol = AccessibilityMarker;
318 type ControlHandle = AccessibilityControlHandle;
319
320 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
321 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
322 }
323
324 fn control_handle(&self) -> Self::ControlHandle {
325 AccessibilityControlHandle { inner: self.inner.clone() }
326 }
327
328 fn into_inner(
329 self,
330 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
331 {
332 (self.inner, self.is_terminated)
333 }
334
335 fn from_inner(
336 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
337 is_terminated: bool,
338 ) -> Self {
339 Self { inner, is_terminated }
340 }
341}
342
343impl futures::Stream for AccessibilityRequestStream {
344 type Item = Result<AccessibilityRequest, fidl::Error>;
345
346 fn poll_next(
347 mut self: std::pin::Pin<&mut Self>,
348 cx: &mut std::task::Context<'_>,
349 ) -> std::task::Poll<Option<Self::Item>> {
350 let this = &mut *self;
351 if this.inner.check_shutdown(cx) {
352 this.is_terminated = true;
353 return std::task::Poll::Ready(None);
354 }
355 if this.is_terminated {
356 panic!("polled AccessibilityRequestStream after completion");
357 }
358 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
359 |bytes, handles| {
360 match this.inner.channel().read_etc(cx, bytes, handles) {
361 std::task::Poll::Ready(Ok(())) => {}
362 std::task::Poll::Pending => return std::task::Poll::Pending,
363 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
364 this.is_terminated = true;
365 return std::task::Poll::Ready(None);
366 }
367 std::task::Poll::Ready(Err(e)) => {
368 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
369 e.into(),
370 ))))
371 }
372 }
373
374 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
376
377 std::task::Poll::Ready(Some(match header.ordinal {
378 0x417d0b95ddbf7674 => {
379 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
380 let mut req = fidl::new_empty!(
381 fidl::encoding::EmptyPayload,
382 fidl::encoding::DefaultFuchsiaResourceDialect
383 );
384 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
385 let control_handle =
386 AccessibilityControlHandle { inner: this.inner.clone() };
387 Ok(AccessibilityRequest::Watch {
388 responder: AccessibilityWatchResponder {
389 control_handle: std::mem::ManuallyDrop::new(control_handle),
390 tx_id: header.tx_id,
391 },
392 })
393 }
394 0x298485ef354fb8cb => {
395 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
396 let mut req = fidl::new_empty!(
397 AccessibilitySetRequest,
398 fidl::encoding::DefaultFuchsiaResourceDialect
399 );
400 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<AccessibilitySetRequest>(&header, _body_bytes, handles, &mut req)?;
401 let control_handle =
402 AccessibilityControlHandle { inner: this.inner.clone() };
403 Ok(AccessibilityRequest::Set {
404 settings: req.settings,
405
406 responder: AccessibilitySetResponder {
407 control_handle: std::mem::ManuallyDrop::new(control_handle),
408 tx_id: header.tx_id,
409 },
410 })
411 }
412 _ => Err(fidl::Error::UnknownOrdinal {
413 ordinal: header.ordinal,
414 protocol_name:
415 <AccessibilityMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
416 }),
417 }))
418 },
419 )
420 }
421}
422
423#[derive(Debug)]
428pub enum AccessibilityRequest {
429 Watch { responder: AccessibilityWatchResponder },
439 Set { settings: AccessibilitySettings, responder: AccessibilitySetResponder },
442}
443
444impl AccessibilityRequest {
445 #[allow(irrefutable_let_patterns)]
446 pub fn into_watch(self) -> Option<(AccessibilityWatchResponder)> {
447 if let AccessibilityRequest::Watch { responder } = self {
448 Some((responder))
449 } else {
450 None
451 }
452 }
453
454 #[allow(irrefutable_let_patterns)]
455 pub fn into_set(self) -> Option<(AccessibilitySettings, AccessibilitySetResponder)> {
456 if let AccessibilityRequest::Set { settings, responder } = self {
457 Some((settings, responder))
458 } else {
459 None
460 }
461 }
462
463 pub fn method_name(&self) -> &'static str {
465 match *self {
466 AccessibilityRequest::Watch { .. } => "watch",
467 AccessibilityRequest::Set { .. } => "set",
468 }
469 }
470}
471
472#[derive(Debug, Clone)]
473pub struct AccessibilityControlHandle {
474 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
475}
476
477impl fidl::endpoints::ControlHandle for AccessibilityControlHandle {
478 fn shutdown(&self) {
479 self.inner.shutdown()
480 }
481 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
482 self.inner.shutdown_with_epitaph(status)
483 }
484
485 fn is_closed(&self) -> bool {
486 self.inner.channel().is_closed()
487 }
488 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
489 self.inner.channel().on_closed()
490 }
491
492 #[cfg(target_os = "fuchsia")]
493 fn signal_peer(
494 &self,
495 clear_mask: zx::Signals,
496 set_mask: zx::Signals,
497 ) -> Result<(), zx_status::Status> {
498 use fidl::Peered;
499 self.inner.channel().signal_peer(clear_mask, set_mask)
500 }
501}
502
503impl AccessibilityControlHandle {}
504
505#[must_use = "FIDL methods require a response to be sent"]
506#[derive(Debug)]
507pub struct AccessibilityWatchResponder {
508 control_handle: std::mem::ManuallyDrop<AccessibilityControlHandle>,
509 tx_id: u32,
510}
511
512impl std::ops::Drop for AccessibilityWatchResponder {
516 fn drop(&mut self) {
517 self.control_handle.shutdown();
518 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
520 }
521}
522
523impl fidl::endpoints::Responder for AccessibilityWatchResponder {
524 type ControlHandle = AccessibilityControlHandle;
525
526 fn control_handle(&self) -> &AccessibilityControlHandle {
527 &self.control_handle
528 }
529
530 fn drop_without_shutdown(mut self) {
531 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
533 std::mem::forget(self);
535 }
536}
537
538impl AccessibilityWatchResponder {
539 pub fn send(self, mut settings: &AccessibilitySettings) -> Result<(), fidl::Error> {
543 let _result = self.send_raw(settings);
544 if _result.is_err() {
545 self.control_handle.shutdown();
546 }
547 self.drop_without_shutdown();
548 _result
549 }
550
551 pub fn send_no_shutdown_on_err(
553 self,
554 mut settings: &AccessibilitySettings,
555 ) -> Result<(), fidl::Error> {
556 let _result = self.send_raw(settings);
557 self.drop_without_shutdown();
558 _result
559 }
560
561 fn send_raw(&self, mut settings: &AccessibilitySettings) -> Result<(), fidl::Error> {
562 self.control_handle.inner.send::<AccessibilityWatchResponse>(
563 (settings,),
564 self.tx_id,
565 0x417d0b95ddbf7674,
566 fidl::encoding::DynamicFlags::empty(),
567 )
568 }
569}
570
571#[must_use = "FIDL methods require a response to be sent"]
572#[derive(Debug)]
573pub struct AccessibilitySetResponder {
574 control_handle: std::mem::ManuallyDrop<AccessibilityControlHandle>,
575 tx_id: u32,
576}
577
578impl std::ops::Drop for AccessibilitySetResponder {
582 fn drop(&mut self) {
583 self.control_handle.shutdown();
584 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
586 }
587}
588
589impl fidl::endpoints::Responder for AccessibilitySetResponder {
590 type ControlHandle = AccessibilityControlHandle;
591
592 fn control_handle(&self) -> &AccessibilityControlHandle {
593 &self.control_handle
594 }
595
596 fn drop_without_shutdown(mut self) {
597 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
599 std::mem::forget(self);
601 }
602}
603
604impl AccessibilitySetResponder {
605 pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
609 let _result = self.send_raw(result);
610 if _result.is_err() {
611 self.control_handle.shutdown();
612 }
613 self.drop_without_shutdown();
614 _result
615 }
616
617 pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
619 let _result = self.send_raw(result);
620 self.drop_without_shutdown();
621 _result
622 }
623
624 fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
625 self.control_handle
626 .inner
627 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
628 result,
629 self.tx_id,
630 0x298485ef354fb8cb,
631 fidl::encoding::DynamicFlags::empty(),
632 )
633 }
634}
635
636#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
637pub struct AudioMarker;
638
639impl fidl::endpoints::ProtocolMarker for AudioMarker {
640 type Proxy = AudioProxy;
641 type RequestStream = AudioRequestStream;
642 #[cfg(target_os = "fuchsia")]
643 type SynchronousProxy = AudioSynchronousProxy;
644
645 const DEBUG_NAME: &'static str = "fuchsia.settings.Audio";
646}
647impl fidl::endpoints::DiscoverableProtocolMarker for AudioMarker {}
648pub type AudioSetResult = Result<(), Error>;
649pub type AudioSet2Result = Result<(), Error>;
650
651pub trait AudioProxyInterface: Send + Sync {
652 type WatchResponseFut: std::future::Future<Output = Result<AudioSettings, fidl::Error>> + Send;
653 fn r#watch(&self) -> Self::WatchResponseFut;
654 type Watch2ResponseFut: std::future::Future<Output = Result<AudioSettings2, fidl::Error>> + Send;
655 fn r#watch2(&self) -> Self::Watch2ResponseFut;
656 type SetResponseFut: std::future::Future<Output = Result<AudioSetResult, fidl::Error>> + Send;
657 fn r#set(&self, settings: &AudioSettings) -> Self::SetResponseFut;
658 type Set2ResponseFut: std::future::Future<Output = Result<AudioSet2Result, fidl::Error>> + Send;
659 fn r#set2(&self, settings: &AudioSettings2) -> Self::Set2ResponseFut;
660}
661#[derive(Debug)]
662#[cfg(target_os = "fuchsia")]
663pub struct AudioSynchronousProxy {
664 client: fidl::client::sync::Client,
665}
666
667#[cfg(target_os = "fuchsia")]
668impl fidl::endpoints::SynchronousProxy for AudioSynchronousProxy {
669 type Proxy = AudioProxy;
670 type Protocol = AudioMarker;
671
672 fn from_channel(inner: fidl::Channel) -> Self {
673 Self::new(inner)
674 }
675
676 fn into_channel(self) -> fidl::Channel {
677 self.client.into_channel()
678 }
679
680 fn as_channel(&self) -> &fidl::Channel {
681 self.client.as_channel()
682 }
683}
684
685#[cfg(target_os = "fuchsia")]
686impl AudioSynchronousProxy {
687 pub fn new(channel: fidl::Channel) -> Self {
688 let protocol_name = <AudioMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
689 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
690 }
691
692 pub fn into_channel(self) -> fidl::Channel {
693 self.client.into_channel()
694 }
695
696 pub fn wait_for_event(
699 &self,
700 deadline: zx::MonotonicInstant,
701 ) -> Result<AudioEvent, fidl::Error> {
702 AudioEvent::decode(self.client.wait_for_event(deadline)?)
703 }
704
705 pub fn r#watch(&self, ___deadline: zx::MonotonicInstant) -> Result<AudioSettings, fidl::Error> {
711 let _response =
712 self.client.send_query::<fidl::encoding::EmptyPayload, AudioWatchResponse>(
713 (),
714 0x2995cf83f9d0f805,
715 fidl::encoding::DynamicFlags::empty(),
716 ___deadline,
717 )?;
718 Ok(_response.settings)
719 }
720
721 pub fn r#watch2(
726 &self,
727 ___deadline: zx::MonotonicInstant,
728 ) -> Result<AudioSettings2, fidl::Error> {
729 let _response = self.client.send_query::<
730 fidl::encoding::EmptyPayload,
731 fidl::encoding::FlexibleType<AudioWatch2Response>,
732 >(
733 (),
734 0x4d10b204de1796e2,
735 fidl::encoding::DynamicFlags::FLEXIBLE,
736 ___deadline,
737 )?
738 .into_result::<AudioMarker>("watch2")?;
739 Ok(_response.settings)
740 }
741
742 pub fn r#set(
745 &self,
746 mut settings: &AudioSettings,
747 ___deadline: zx::MonotonicInstant,
748 ) -> Result<AudioSetResult, fidl::Error> {
749 let _response = self.client.send_query::<AudioSetRequest, fidl::encoding::ResultType<
750 fidl::encoding::EmptyStruct,
751 Error,
752 >>(
753 (settings,),
754 0x4f3865db04da626c,
755 fidl::encoding::DynamicFlags::empty(),
756 ___deadline,
757 )?;
758 Ok(_response.map(|x| x))
759 }
760
761 pub fn r#set2(
764 &self,
765 mut settings: &AudioSettings2,
766 ___deadline: zx::MonotonicInstant,
767 ) -> Result<AudioSet2Result, fidl::Error> {
768 let _response = self.client.send_query::<
769 AudioSet2Request,
770 fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, Error>,
771 >(
772 (settings,),
773 0x1f027e9ed7beefe3,
774 fidl::encoding::DynamicFlags::FLEXIBLE,
775 ___deadline,
776 )?
777 .into_result::<AudioMarker>("set2")?;
778 Ok(_response.map(|x| x))
779 }
780}
781
782#[cfg(target_os = "fuchsia")]
783impl From<AudioSynchronousProxy> for zx::Handle {
784 fn from(value: AudioSynchronousProxy) -> Self {
785 value.into_channel().into()
786 }
787}
788
789#[cfg(target_os = "fuchsia")]
790impl From<fidl::Channel> for AudioSynchronousProxy {
791 fn from(value: fidl::Channel) -> Self {
792 Self::new(value)
793 }
794}
795
796#[derive(Debug, Clone)]
797pub struct AudioProxy {
798 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
799}
800
801impl fidl::endpoints::Proxy for AudioProxy {
802 type Protocol = AudioMarker;
803
804 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
805 Self::new(inner)
806 }
807
808 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
809 self.client.into_channel().map_err(|client| Self { client })
810 }
811
812 fn as_channel(&self) -> &::fidl::AsyncChannel {
813 self.client.as_channel()
814 }
815}
816
817impl AudioProxy {
818 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
820 let protocol_name = <AudioMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
821 Self { client: fidl::client::Client::new(channel, protocol_name) }
822 }
823
824 pub fn take_event_stream(&self) -> AudioEventStream {
830 AudioEventStream { event_receiver: self.client.take_event_receiver() }
831 }
832
833 pub fn r#watch(
839 &self,
840 ) -> fidl::client::QueryResponseFut<AudioSettings, fidl::encoding::DefaultFuchsiaResourceDialect>
841 {
842 AudioProxyInterface::r#watch(self)
843 }
844
845 pub fn r#watch2(
850 &self,
851 ) -> fidl::client::QueryResponseFut<AudioSettings2, fidl::encoding::DefaultFuchsiaResourceDialect>
852 {
853 AudioProxyInterface::r#watch2(self)
854 }
855
856 pub fn r#set(
859 &self,
860 mut settings: &AudioSettings,
861 ) -> fidl::client::QueryResponseFut<AudioSetResult, fidl::encoding::DefaultFuchsiaResourceDialect>
862 {
863 AudioProxyInterface::r#set(self, settings)
864 }
865
866 pub fn r#set2(
869 &self,
870 mut settings: &AudioSettings2,
871 ) -> fidl::client::QueryResponseFut<
872 AudioSet2Result,
873 fidl::encoding::DefaultFuchsiaResourceDialect,
874 > {
875 AudioProxyInterface::r#set2(self, settings)
876 }
877}
878
879impl AudioProxyInterface for AudioProxy {
880 type WatchResponseFut = fidl::client::QueryResponseFut<
881 AudioSettings,
882 fidl::encoding::DefaultFuchsiaResourceDialect,
883 >;
884 fn r#watch(&self) -> Self::WatchResponseFut {
885 fn _decode(
886 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
887 ) -> Result<AudioSettings, fidl::Error> {
888 let _response = fidl::client::decode_transaction_body::<
889 AudioWatchResponse,
890 fidl::encoding::DefaultFuchsiaResourceDialect,
891 0x2995cf83f9d0f805,
892 >(_buf?)?;
893 Ok(_response.settings)
894 }
895 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, AudioSettings>(
896 (),
897 0x2995cf83f9d0f805,
898 fidl::encoding::DynamicFlags::empty(),
899 _decode,
900 )
901 }
902
903 type Watch2ResponseFut = fidl::client::QueryResponseFut<
904 AudioSettings2,
905 fidl::encoding::DefaultFuchsiaResourceDialect,
906 >;
907 fn r#watch2(&self) -> Self::Watch2ResponseFut {
908 fn _decode(
909 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
910 ) -> Result<AudioSettings2, fidl::Error> {
911 let _response = fidl::client::decode_transaction_body::<
912 fidl::encoding::FlexibleType<AudioWatch2Response>,
913 fidl::encoding::DefaultFuchsiaResourceDialect,
914 0x4d10b204de1796e2,
915 >(_buf?)?
916 .into_result::<AudioMarker>("watch2")?;
917 Ok(_response.settings)
918 }
919 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, AudioSettings2>(
920 (),
921 0x4d10b204de1796e2,
922 fidl::encoding::DynamicFlags::FLEXIBLE,
923 _decode,
924 )
925 }
926
927 type SetResponseFut = fidl::client::QueryResponseFut<
928 AudioSetResult,
929 fidl::encoding::DefaultFuchsiaResourceDialect,
930 >;
931 fn r#set(&self, mut settings: &AudioSettings) -> Self::SetResponseFut {
932 fn _decode(
933 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
934 ) -> Result<AudioSetResult, fidl::Error> {
935 let _response = fidl::client::decode_transaction_body::<
936 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
937 fidl::encoding::DefaultFuchsiaResourceDialect,
938 0x4f3865db04da626c,
939 >(_buf?)?;
940 Ok(_response.map(|x| x))
941 }
942 self.client.send_query_and_decode::<AudioSetRequest, AudioSetResult>(
943 (settings,),
944 0x4f3865db04da626c,
945 fidl::encoding::DynamicFlags::empty(),
946 _decode,
947 )
948 }
949
950 type Set2ResponseFut = fidl::client::QueryResponseFut<
951 AudioSet2Result,
952 fidl::encoding::DefaultFuchsiaResourceDialect,
953 >;
954 fn r#set2(&self, mut settings: &AudioSettings2) -> Self::Set2ResponseFut {
955 fn _decode(
956 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
957 ) -> Result<AudioSet2Result, fidl::Error> {
958 let _response = fidl::client::decode_transaction_body::<
959 fidl::encoding::FlexibleResultType<fidl::encoding::EmptyStruct, Error>,
960 fidl::encoding::DefaultFuchsiaResourceDialect,
961 0x1f027e9ed7beefe3,
962 >(_buf?)?
963 .into_result::<AudioMarker>("set2")?;
964 Ok(_response.map(|x| x))
965 }
966 self.client.send_query_and_decode::<AudioSet2Request, AudioSet2Result>(
967 (settings,),
968 0x1f027e9ed7beefe3,
969 fidl::encoding::DynamicFlags::FLEXIBLE,
970 _decode,
971 )
972 }
973}
974
975pub struct AudioEventStream {
976 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
977}
978
979impl std::marker::Unpin for AudioEventStream {}
980
981impl futures::stream::FusedStream for AudioEventStream {
982 fn is_terminated(&self) -> bool {
983 self.event_receiver.is_terminated()
984 }
985}
986
987impl futures::Stream for AudioEventStream {
988 type Item = Result<AudioEvent, fidl::Error>;
989
990 fn poll_next(
991 mut self: std::pin::Pin<&mut Self>,
992 cx: &mut std::task::Context<'_>,
993 ) -> std::task::Poll<Option<Self::Item>> {
994 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
995 &mut self.event_receiver,
996 cx
997 )?) {
998 Some(buf) => std::task::Poll::Ready(Some(AudioEvent::decode(buf))),
999 None => std::task::Poll::Ready(None),
1000 }
1001 }
1002}
1003
1004#[derive(Debug)]
1005pub enum AudioEvent {
1006 #[non_exhaustive]
1007 _UnknownEvent {
1008 ordinal: u64,
1010 },
1011}
1012
1013impl AudioEvent {
1014 fn decode(
1016 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
1017 ) -> Result<AudioEvent, fidl::Error> {
1018 let (bytes, _handles) = buf.split_mut();
1019 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
1020 debug_assert_eq!(tx_header.tx_id, 0);
1021 match tx_header.ordinal {
1022 _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
1023 Ok(AudioEvent::_UnknownEvent { ordinal: tx_header.ordinal })
1024 }
1025 _ => Err(fidl::Error::UnknownOrdinal {
1026 ordinal: tx_header.ordinal,
1027 protocol_name: <AudioMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
1028 }),
1029 }
1030 }
1031}
1032
1033pub struct AudioRequestStream {
1035 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1036 is_terminated: bool,
1037}
1038
1039impl std::marker::Unpin for AudioRequestStream {}
1040
1041impl futures::stream::FusedStream for AudioRequestStream {
1042 fn is_terminated(&self) -> bool {
1043 self.is_terminated
1044 }
1045}
1046
1047impl fidl::endpoints::RequestStream for AudioRequestStream {
1048 type Protocol = AudioMarker;
1049 type ControlHandle = AudioControlHandle;
1050
1051 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
1052 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
1053 }
1054
1055 fn control_handle(&self) -> Self::ControlHandle {
1056 AudioControlHandle { inner: self.inner.clone() }
1057 }
1058
1059 fn into_inner(
1060 self,
1061 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
1062 {
1063 (self.inner, self.is_terminated)
1064 }
1065
1066 fn from_inner(
1067 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1068 is_terminated: bool,
1069 ) -> Self {
1070 Self { inner, is_terminated }
1071 }
1072}
1073
1074impl futures::Stream for AudioRequestStream {
1075 type Item = Result<AudioRequest, fidl::Error>;
1076
1077 fn poll_next(
1078 mut self: std::pin::Pin<&mut Self>,
1079 cx: &mut std::task::Context<'_>,
1080 ) -> std::task::Poll<Option<Self::Item>> {
1081 let this = &mut *self;
1082 if this.inner.check_shutdown(cx) {
1083 this.is_terminated = true;
1084 return std::task::Poll::Ready(None);
1085 }
1086 if this.is_terminated {
1087 panic!("polled AudioRequestStream after completion");
1088 }
1089 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
1090 |bytes, handles| {
1091 match this.inner.channel().read_etc(cx, bytes, handles) {
1092 std::task::Poll::Ready(Ok(())) => {}
1093 std::task::Poll::Pending => return std::task::Poll::Pending,
1094 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
1095 this.is_terminated = true;
1096 return std::task::Poll::Ready(None);
1097 }
1098 std::task::Poll::Ready(Err(e)) => {
1099 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
1100 e.into(),
1101 ))))
1102 }
1103 }
1104
1105 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
1107
1108 std::task::Poll::Ready(Some(match header.ordinal {
1109 0x2995cf83f9d0f805 => {
1110 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1111 let mut req = fidl::new_empty!(
1112 fidl::encoding::EmptyPayload,
1113 fidl::encoding::DefaultFuchsiaResourceDialect
1114 );
1115 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
1116 let control_handle = AudioControlHandle { inner: this.inner.clone() };
1117 Ok(AudioRequest::Watch {
1118 responder: AudioWatchResponder {
1119 control_handle: std::mem::ManuallyDrop::new(control_handle),
1120 tx_id: header.tx_id,
1121 },
1122 })
1123 }
1124 0x4d10b204de1796e2 => {
1125 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1126 let mut req = fidl::new_empty!(
1127 fidl::encoding::EmptyPayload,
1128 fidl::encoding::DefaultFuchsiaResourceDialect
1129 );
1130 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
1131 let control_handle = AudioControlHandle { inner: this.inner.clone() };
1132 Ok(AudioRequest::Watch2 {
1133 responder: AudioWatch2Responder {
1134 control_handle: std::mem::ManuallyDrop::new(control_handle),
1135 tx_id: header.tx_id,
1136 },
1137 })
1138 }
1139 0x4f3865db04da626c => {
1140 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1141 let mut req = fidl::new_empty!(
1142 AudioSetRequest,
1143 fidl::encoding::DefaultFuchsiaResourceDialect
1144 );
1145 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<AudioSetRequest>(&header, _body_bytes, handles, &mut req)?;
1146 let control_handle = AudioControlHandle { inner: this.inner.clone() };
1147 Ok(AudioRequest::Set {
1148 settings: req.settings,
1149
1150 responder: AudioSetResponder {
1151 control_handle: std::mem::ManuallyDrop::new(control_handle),
1152 tx_id: header.tx_id,
1153 },
1154 })
1155 }
1156 0x1f027e9ed7beefe3 => {
1157 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1158 let mut req = fidl::new_empty!(
1159 AudioSet2Request,
1160 fidl::encoding::DefaultFuchsiaResourceDialect
1161 );
1162 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<AudioSet2Request>(&header, _body_bytes, handles, &mut req)?;
1163 let control_handle = AudioControlHandle { inner: this.inner.clone() };
1164 Ok(AudioRequest::Set2 {
1165 settings: req.settings,
1166
1167 responder: AudioSet2Responder {
1168 control_handle: std::mem::ManuallyDrop::new(control_handle),
1169 tx_id: header.tx_id,
1170 },
1171 })
1172 }
1173 _ if header.tx_id == 0
1174 && header
1175 .dynamic_flags()
1176 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
1177 {
1178 Ok(AudioRequest::_UnknownMethod {
1179 ordinal: header.ordinal,
1180 control_handle: AudioControlHandle { inner: this.inner.clone() },
1181 method_type: fidl::MethodType::OneWay,
1182 })
1183 }
1184 _ if header
1185 .dynamic_flags()
1186 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
1187 {
1188 this.inner.send_framework_err(
1189 fidl::encoding::FrameworkErr::UnknownMethod,
1190 header.tx_id,
1191 header.ordinal,
1192 header.dynamic_flags(),
1193 (bytes, handles),
1194 )?;
1195 Ok(AudioRequest::_UnknownMethod {
1196 ordinal: header.ordinal,
1197 control_handle: AudioControlHandle { inner: this.inner.clone() },
1198 method_type: fidl::MethodType::TwoWay,
1199 })
1200 }
1201 _ => Err(fidl::Error::UnknownOrdinal {
1202 ordinal: header.ordinal,
1203 protocol_name: <AudioMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
1204 }),
1205 }))
1206 },
1207 )
1208 }
1209}
1210
1211#[derive(Debug)]
1216pub enum AudioRequest {
1217 Watch { responder: AudioWatchResponder },
1223 Watch2 { responder: AudioWatch2Responder },
1228 Set { settings: AudioSettings, responder: AudioSetResponder },
1231 Set2 { settings: AudioSettings2, responder: AudioSet2Responder },
1234 #[non_exhaustive]
1236 _UnknownMethod {
1237 ordinal: u64,
1239 control_handle: AudioControlHandle,
1240 method_type: fidl::MethodType,
1241 },
1242}
1243
1244impl AudioRequest {
1245 #[allow(irrefutable_let_patterns)]
1246 pub fn into_watch(self) -> Option<(AudioWatchResponder)> {
1247 if let AudioRequest::Watch { responder } = self {
1248 Some((responder))
1249 } else {
1250 None
1251 }
1252 }
1253
1254 #[allow(irrefutable_let_patterns)]
1255 pub fn into_watch2(self) -> Option<(AudioWatch2Responder)> {
1256 if let AudioRequest::Watch2 { responder } = self {
1257 Some((responder))
1258 } else {
1259 None
1260 }
1261 }
1262
1263 #[allow(irrefutable_let_patterns)]
1264 pub fn into_set(self) -> Option<(AudioSettings, AudioSetResponder)> {
1265 if let AudioRequest::Set { settings, responder } = self {
1266 Some((settings, responder))
1267 } else {
1268 None
1269 }
1270 }
1271
1272 #[allow(irrefutable_let_patterns)]
1273 pub fn into_set2(self) -> Option<(AudioSettings2, AudioSet2Responder)> {
1274 if let AudioRequest::Set2 { settings, responder } = self {
1275 Some((settings, responder))
1276 } else {
1277 None
1278 }
1279 }
1280
1281 pub fn method_name(&self) -> &'static str {
1283 match *self {
1284 AudioRequest::Watch { .. } => "watch",
1285 AudioRequest::Watch2 { .. } => "watch2",
1286 AudioRequest::Set { .. } => "set",
1287 AudioRequest::Set2 { .. } => "set2",
1288 AudioRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
1289 "unknown one-way method"
1290 }
1291 AudioRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
1292 "unknown two-way method"
1293 }
1294 }
1295 }
1296}
1297
1298#[derive(Debug, Clone)]
1299pub struct AudioControlHandle {
1300 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1301}
1302
1303impl fidl::endpoints::ControlHandle for AudioControlHandle {
1304 fn shutdown(&self) {
1305 self.inner.shutdown()
1306 }
1307 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
1308 self.inner.shutdown_with_epitaph(status)
1309 }
1310
1311 fn is_closed(&self) -> bool {
1312 self.inner.channel().is_closed()
1313 }
1314 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
1315 self.inner.channel().on_closed()
1316 }
1317
1318 #[cfg(target_os = "fuchsia")]
1319 fn signal_peer(
1320 &self,
1321 clear_mask: zx::Signals,
1322 set_mask: zx::Signals,
1323 ) -> Result<(), zx_status::Status> {
1324 use fidl::Peered;
1325 self.inner.channel().signal_peer(clear_mask, set_mask)
1326 }
1327}
1328
1329impl AudioControlHandle {}
1330
1331#[must_use = "FIDL methods require a response to be sent"]
1332#[derive(Debug)]
1333pub struct AudioWatchResponder {
1334 control_handle: std::mem::ManuallyDrop<AudioControlHandle>,
1335 tx_id: u32,
1336}
1337
1338impl std::ops::Drop for AudioWatchResponder {
1342 fn drop(&mut self) {
1343 self.control_handle.shutdown();
1344 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1346 }
1347}
1348
1349impl fidl::endpoints::Responder for AudioWatchResponder {
1350 type ControlHandle = AudioControlHandle;
1351
1352 fn control_handle(&self) -> &AudioControlHandle {
1353 &self.control_handle
1354 }
1355
1356 fn drop_without_shutdown(mut self) {
1357 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1359 std::mem::forget(self);
1361 }
1362}
1363
1364impl AudioWatchResponder {
1365 pub fn send(self, mut settings: &AudioSettings) -> Result<(), fidl::Error> {
1369 let _result = self.send_raw(settings);
1370 if _result.is_err() {
1371 self.control_handle.shutdown();
1372 }
1373 self.drop_without_shutdown();
1374 _result
1375 }
1376
1377 pub fn send_no_shutdown_on_err(self, mut settings: &AudioSettings) -> Result<(), fidl::Error> {
1379 let _result = self.send_raw(settings);
1380 self.drop_without_shutdown();
1381 _result
1382 }
1383
1384 fn send_raw(&self, mut settings: &AudioSettings) -> Result<(), fidl::Error> {
1385 self.control_handle.inner.send::<AudioWatchResponse>(
1386 (settings,),
1387 self.tx_id,
1388 0x2995cf83f9d0f805,
1389 fidl::encoding::DynamicFlags::empty(),
1390 )
1391 }
1392}
1393
1394#[must_use = "FIDL methods require a response to be sent"]
1395#[derive(Debug)]
1396pub struct AudioWatch2Responder {
1397 control_handle: std::mem::ManuallyDrop<AudioControlHandle>,
1398 tx_id: u32,
1399}
1400
1401impl std::ops::Drop for AudioWatch2Responder {
1405 fn drop(&mut self) {
1406 self.control_handle.shutdown();
1407 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1409 }
1410}
1411
1412impl fidl::endpoints::Responder for AudioWatch2Responder {
1413 type ControlHandle = AudioControlHandle;
1414
1415 fn control_handle(&self) -> &AudioControlHandle {
1416 &self.control_handle
1417 }
1418
1419 fn drop_without_shutdown(mut self) {
1420 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1422 std::mem::forget(self);
1424 }
1425}
1426
1427impl AudioWatch2Responder {
1428 pub fn send(self, mut settings: &AudioSettings2) -> Result<(), fidl::Error> {
1432 let _result = self.send_raw(settings);
1433 if _result.is_err() {
1434 self.control_handle.shutdown();
1435 }
1436 self.drop_without_shutdown();
1437 _result
1438 }
1439
1440 pub fn send_no_shutdown_on_err(self, mut settings: &AudioSettings2) -> Result<(), fidl::Error> {
1442 let _result = self.send_raw(settings);
1443 self.drop_without_shutdown();
1444 _result
1445 }
1446
1447 fn send_raw(&self, mut settings: &AudioSettings2) -> Result<(), fidl::Error> {
1448 self.control_handle.inner.send::<fidl::encoding::FlexibleType<AudioWatch2Response>>(
1449 fidl::encoding::Flexible::new((settings,)),
1450 self.tx_id,
1451 0x4d10b204de1796e2,
1452 fidl::encoding::DynamicFlags::FLEXIBLE,
1453 )
1454 }
1455}
1456
1457#[must_use = "FIDL methods require a response to be sent"]
1458#[derive(Debug)]
1459pub struct AudioSetResponder {
1460 control_handle: std::mem::ManuallyDrop<AudioControlHandle>,
1461 tx_id: u32,
1462}
1463
1464impl std::ops::Drop for AudioSetResponder {
1468 fn drop(&mut self) {
1469 self.control_handle.shutdown();
1470 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1472 }
1473}
1474
1475impl fidl::endpoints::Responder for AudioSetResponder {
1476 type ControlHandle = AudioControlHandle;
1477
1478 fn control_handle(&self) -> &AudioControlHandle {
1479 &self.control_handle
1480 }
1481
1482 fn drop_without_shutdown(mut self) {
1483 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1485 std::mem::forget(self);
1487 }
1488}
1489
1490impl AudioSetResponder {
1491 pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
1495 let _result = self.send_raw(result);
1496 if _result.is_err() {
1497 self.control_handle.shutdown();
1498 }
1499 self.drop_without_shutdown();
1500 _result
1501 }
1502
1503 pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
1505 let _result = self.send_raw(result);
1506 self.drop_without_shutdown();
1507 _result
1508 }
1509
1510 fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
1511 self.control_handle
1512 .inner
1513 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
1514 result,
1515 self.tx_id,
1516 0x4f3865db04da626c,
1517 fidl::encoding::DynamicFlags::empty(),
1518 )
1519 }
1520}
1521
1522#[must_use = "FIDL methods require a response to be sent"]
1523#[derive(Debug)]
1524pub struct AudioSet2Responder {
1525 control_handle: std::mem::ManuallyDrop<AudioControlHandle>,
1526 tx_id: u32,
1527}
1528
1529impl std::ops::Drop for AudioSet2Responder {
1533 fn drop(&mut self) {
1534 self.control_handle.shutdown();
1535 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1537 }
1538}
1539
1540impl fidl::endpoints::Responder for AudioSet2Responder {
1541 type ControlHandle = AudioControlHandle;
1542
1543 fn control_handle(&self) -> &AudioControlHandle {
1544 &self.control_handle
1545 }
1546
1547 fn drop_without_shutdown(mut self) {
1548 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1550 std::mem::forget(self);
1552 }
1553}
1554
1555impl AudioSet2Responder {
1556 pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
1560 let _result = self.send_raw(result);
1561 if _result.is_err() {
1562 self.control_handle.shutdown();
1563 }
1564 self.drop_without_shutdown();
1565 _result
1566 }
1567
1568 pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
1570 let _result = self.send_raw(result);
1571 self.drop_without_shutdown();
1572 _result
1573 }
1574
1575 fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
1576 self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
1577 fidl::encoding::EmptyStruct,
1578 Error,
1579 >>(
1580 fidl::encoding::FlexibleResult::new(result),
1581 self.tx_id,
1582 0x1f027e9ed7beefe3,
1583 fidl::encoding::DynamicFlags::FLEXIBLE,
1584 )
1585 }
1586}
1587
1588#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
1589pub struct DisplayMarker;
1590
1591impl fidl::endpoints::ProtocolMarker for DisplayMarker {
1592 type Proxy = DisplayProxy;
1593 type RequestStream = DisplayRequestStream;
1594 #[cfg(target_os = "fuchsia")]
1595 type SynchronousProxy = DisplaySynchronousProxy;
1596
1597 const DEBUG_NAME: &'static str = "fuchsia.settings.Display";
1598}
1599impl fidl::endpoints::DiscoverableProtocolMarker for DisplayMarker {}
1600pub type DisplaySetResult = Result<(), Error>;
1601
1602pub trait DisplayProxyInterface: Send + Sync {
1603 type WatchResponseFut: std::future::Future<Output = Result<DisplaySettings, fidl::Error>> + Send;
1604 fn r#watch(&self) -> Self::WatchResponseFut;
1605 type SetResponseFut: std::future::Future<Output = Result<DisplaySetResult, fidl::Error>> + Send;
1606 fn r#set(&self, settings: &DisplaySettings) -> Self::SetResponseFut;
1607}
1608#[derive(Debug)]
1609#[cfg(target_os = "fuchsia")]
1610pub struct DisplaySynchronousProxy {
1611 client: fidl::client::sync::Client,
1612}
1613
1614#[cfg(target_os = "fuchsia")]
1615impl fidl::endpoints::SynchronousProxy for DisplaySynchronousProxy {
1616 type Proxy = DisplayProxy;
1617 type Protocol = DisplayMarker;
1618
1619 fn from_channel(inner: fidl::Channel) -> Self {
1620 Self::new(inner)
1621 }
1622
1623 fn into_channel(self) -> fidl::Channel {
1624 self.client.into_channel()
1625 }
1626
1627 fn as_channel(&self) -> &fidl::Channel {
1628 self.client.as_channel()
1629 }
1630}
1631
1632#[cfg(target_os = "fuchsia")]
1633impl DisplaySynchronousProxy {
1634 pub fn new(channel: fidl::Channel) -> Self {
1635 let protocol_name = <DisplayMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
1636 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
1637 }
1638
1639 pub fn into_channel(self) -> fidl::Channel {
1640 self.client.into_channel()
1641 }
1642
1643 pub fn wait_for_event(
1646 &self,
1647 deadline: zx::MonotonicInstant,
1648 ) -> Result<DisplayEvent, fidl::Error> {
1649 DisplayEvent::decode(self.client.wait_for_event(deadline)?)
1650 }
1651
1652 pub fn r#watch(
1658 &self,
1659 ___deadline: zx::MonotonicInstant,
1660 ) -> Result<DisplaySettings, fidl::Error> {
1661 let _response =
1662 self.client.send_query::<fidl::encoding::EmptyPayload, DisplayWatchResponse>(
1663 (),
1664 0x7da3212470364db1,
1665 fidl::encoding::DynamicFlags::empty(),
1666 ___deadline,
1667 )?;
1668 Ok(_response.settings)
1669 }
1670
1671 pub fn r#set(
1674 &self,
1675 mut settings: &DisplaySettings,
1676 ___deadline: zx::MonotonicInstant,
1677 ) -> Result<DisplaySetResult, fidl::Error> {
1678 let _response = self.client.send_query::<DisplaySetRequest, fidl::encoding::ResultType<
1679 fidl::encoding::EmptyStruct,
1680 Error,
1681 >>(
1682 (settings,),
1683 0x1029e06ace17479c,
1684 fidl::encoding::DynamicFlags::empty(),
1685 ___deadline,
1686 )?;
1687 Ok(_response.map(|x| x))
1688 }
1689}
1690
1691#[cfg(target_os = "fuchsia")]
1692impl From<DisplaySynchronousProxy> for zx::Handle {
1693 fn from(value: DisplaySynchronousProxy) -> Self {
1694 value.into_channel().into()
1695 }
1696}
1697
1698#[cfg(target_os = "fuchsia")]
1699impl From<fidl::Channel> for DisplaySynchronousProxy {
1700 fn from(value: fidl::Channel) -> Self {
1701 Self::new(value)
1702 }
1703}
1704
1705#[derive(Debug, Clone)]
1706pub struct DisplayProxy {
1707 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
1708}
1709
1710impl fidl::endpoints::Proxy for DisplayProxy {
1711 type Protocol = DisplayMarker;
1712
1713 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
1714 Self::new(inner)
1715 }
1716
1717 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
1718 self.client.into_channel().map_err(|client| Self { client })
1719 }
1720
1721 fn as_channel(&self) -> &::fidl::AsyncChannel {
1722 self.client.as_channel()
1723 }
1724}
1725
1726impl DisplayProxy {
1727 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
1729 let protocol_name = <DisplayMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
1730 Self { client: fidl::client::Client::new(channel, protocol_name) }
1731 }
1732
1733 pub fn take_event_stream(&self) -> DisplayEventStream {
1739 DisplayEventStream { event_receiver: self.client.take_event_receiver() }
1740 }
1741
1742 pub fn r#watch(
1748 &self,
1749 ) -> fidl::client::QueryResponseFut<
1750 DisplaySettings,
1751 fidl::encoding::DefaultFuchsiaResourceDialect,
1752 > {
1753 DisplayProxyInterface::r#watch(self)
1754 }
1755
1756 pub fn r#set(
1759 &self,
1760 mut settings: &DisplaySettings,
1761 ) -> fidl::client::QueryResponseFut<
1762 DisplaySetResult,
1763 fidl::encoding::DefaultFuchsiaResourceDialect,
1764 > {
1765 DisplayProxyInterface::r#set(self, settings)
1766 }
1767}
1768
1769impl DisplayProxyInterface for DisplayProxy {
1770 type WatchResponseFut = fidl::client::QueryResponseFut<
1771 DisplaySettings,
1772 fidl::encoding::DefaultFuchsiaResourceDialect,
1773 >;
1774 fn r#watch(&self) -> Self::WatchResponseFut {
1775 fn _decode(
1776 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
1777 ) -> Result<DisplaySettings, fidl::Error> {
1778 let _response = fidl::client::decode_transaction_body::<
1779 DisplayWatchResponse,
1780 fidl::encoding::DefaultFuchsiaResourceDialect,
1781 0x7da3212470364db1,
1782 >(_buf?)?;
1783 Ok(_response.settings)
1784 }
1785 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, DisplaySettings>(
1786 (),
1787 0x7da3212470364db1,
1788 fidl::encoding::DynamicFlags::empty(),
1789 _decode,
1790 )
1791 }
1792
1793 type SetResponseFut = fidl::client::QueryResponseFut<
1794 DisplaySetResult,
1795 fidl::encoding::DefaultFuchsiaResourceDialect,
1796 >;
1797 fn r#set(&self, mut settings: &DisplaySettings) -> Self::SetResponseFut {
1798 fn _decode(
1799 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
1800 ) -> Result<DisplaySetResult, fidl::Error> {
1801 let _response = fidl::client::decode_transaction_body::<
1802 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
1803 fidl::encoding::DefaultFuchsiaResourceDialect,
1804 0x1029e06ace17479c,
1805 >(_buf?)?;
1806 Ok(_response.map(|x| x))
1807 }
1808 self.client.send_query_and_decode::<DisplaySetRequest, DisplaySetResult>(
1809 (settings,),
1810 0x1029e06ace17479c,
1811 fidl::encoding::DynamicFlags::empty(),
1812 _decode,
1813 )
1814 }
1815}
1816
1817pub struct DisplayEventStream {
1818 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
1819}
1820
1821impl std::marker::Unpin for DisplayEventStream {}
1822
1823impl futures::stream::FusedStream for DisplayEventStream {
1824 fn is_terminated(&self) -> bool {
1825 self.event_receiver.is_terminated()
1826 }
1827}
1828
1829impl futures::Stream for DisplayEventStream {
1830 type Item = Result<DisplayEvent, fidl::Error>;
1831
1832 fn poll_next(
1833 mut self: std::pin::Pin<&mut Self>,
1834 cx: &mut std::task::Context<'_>,
1835 ) -> std::task::Poll<Option<Self::Item>> {
1836 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
1837 &mut self.event_receiver,
1838 cx
1839 )?) {
1840 Some(buf) => std::task::Poll::Ready(Some(DisplayEvent::decode(buf))),
1841 None => std::task::Poll::Ready(None),
1842 }
1843 }
1844}
1845
1846#[derive(Debug)]
1847pub enum DisplayEvent {}
1848
1849impl DisplayEvent {
1850 fn decode(
1852 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
1853 ) -> Result<DisplayEvent, fidl::Error> {
1854 let (bytes, _handles) = buf.split_mut();
1855 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
1856 debug_assert_eq!(tx_header.tx_id, 0);
1857 match tx_header.ordinal {
1858 _ => Err(fidl::Error::UnknownOrdinal {
1859 ordinal: tx_header.ordinal,
1860 protocol_name: <DisplayMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
1861 }),
1862 }
1863 }
1864}
1865
1866pub struct DisplayRequestStream {
1868 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1869 is_terminated: bool,
1870}
1871
1872impl std::marker::Unpin for DisplayRequestStream {}
1873
1874impl futures::stream::FusedStream for DisplayRequestStream {
1875 fn is_terminated(&self) -> bool {
1876 self.is_terminated
1877 }
1878}
1879
1880impl fidl::endpoints::RequestStream for DisplayRequestStream {
1881 type Protocol = DisplayMarker;
1882 type ControlHandle = DisplayControlHandle;
1883
1884 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
1885 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
1886 }
1887
1888 fn control_handle(&self) -> Self::ControlHandle {
1889 DisplayControlHandle { inner: self.inner.clone() }
1890 }
1891
1892 fn into_inner(
1893 self,
1894 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
1895 {
1896 (self.inner, self.is_terminated)
1897 }
1898
1899 fn from_inner(
1900 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1901 is_terminated: bool,
1902 ) -> Self {
1903 Self { inner, is_terminated }
1904 }
1905}
1906
1907impl futures::Stream for DisplayRequestStream {
1908 type Item = Result<DisplayRequest, fidl::Error>;
1909
1910 fn poll_next(
1911 mut self: std::pin::Pin<&mut Self>,
1912 cx: &mut std::task::Context<'_>,
1913 ) -> std::task::Poll<Option<Self::Item>> {
1914 let this = &mut *self;
1915 if this.inner.check_shutdown(cx) {
1916 this.is_terminated = true;
1917 return std::task::Poll::Ready(None);
1918 }
1919 if this.is_terminated {
1920 panic!("polled DisplayRequestStream after completion");
1921 }
1922 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
1923 |bytes, handles| {
1924 match this.inner.channel().read_etc(cx, bytes, handles) {
1925 std::task::Poll::Ready(Ok(())) => {}
1926 std::task::Poll::Pending => return std::task::Poll::Pending,
1927 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
1928 this.is_terminated = true;
1929 return std::task::Poll::Ready(None);
1930 }
1931 std::task::Poll::Ready(Err(e)) => {
1932 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
1933 e.into(),
1934 ))))
1935 }
1936 }
1937
1938 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
1940
1941 std::task::Poll::Ready(Some(match header.ordinal {
1942 0x7da3212470364db1 => {
1943 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1944 let mut req = fidl::new_empty!(
1945 fidl::encoding::EmptyPayload,
1946 fidl::encoding::DefaultFuchsiaResourceDialect
1947 );
1948 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
1949 let control_handle = DisplayControlHandle { inner: this.inner.clone() };
1950 Ok(DisplayRequest::Watch {
1951 responder: DisplayWatchResponder {
1952 control_handle: std::mem::ManuallyDrop::new(control_handle),
1953 tx_id: header.tx_id,
1954 },
1955 })
1956 }
1957 0x1029e06ace17479c => {
1958 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1959 let mut req = fidl::new_empty!(
1960 DisplaySetRequest,
1961 fidl::encoding::DefaultFuchsiaResourceDialect
1962 );
1963 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DisplaySetRequest>(&header, _body_bytes, handles, &mut req)?;
1964 let control_handle = DisplayControlHandle { inner: this.inner.clone() };
1965 Ok(DisplayRequest::Set {
1966 settings: req.settings,
1967
1968 responder: DisplaySetResponder {
1969 control_handle: std::mem::ManuallyDrop::new(control_handle),
1970 tx_id: header.tx_id,
1971 },
1972 })
1973 }
1974 _ => Err(fidl::Error::UnknownOrdinal {
1975 ordinal: header.ordinal,
1976 protocol_name:
1977 <DisplayMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
1978 }),
1979 }))
1980 },
1981 )
1982 }
1983}
1984
1985#[derive(Debug)]
1990pub enum DisplayRequest {
1991 Watch { responder: DisplayWatchResponder },
1997 Set { settings: DisplaySettings, responder: DisplaySetResponder },
2000}
2001
2002impl DisplayRequest {
2003 #[allow(irrefutable_let_patterns)]
2004 pub fn into_watch(self) -> Option<(DisplayWatchResponder)> {
2005 if let DisplayRequest::Watch { responder } = self {
2006 Some((responder))
2007 } else {
2008 None
2009 }
2010 }
2011
2012 #[allow(irrefutable_let_patterns)]
2013 pub fn into_set(self) -> Option<(DisplaySettings, DisplaySetResponder)> {
2014 if let DisplayRequest::Set { settings, responder } = self {
2015 Some((settings, responder))
2016 } else {
2017 None
2018 }
2019 }
2020
2021 pub fn method_name(&self) -> &'static str {
2023 match *self {
2024 DisplayRequest::Watch { .. } => "watch",
2025 DisplayRequest::Set { .. } => "set",
2026 }
2027 }
2028}
2029
2030#[derive(Debug, Clone)]
2031pub struct DisplayControlHandle {
2032 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
2033}
2034
2035impl fidl::endpoints::ControlHandle for DisplayControlHandle {
2036 fn shutdown(&self) {
2037 self.inner.shutdown()
2038 }
2039 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
2040 self.inner.shutdown_with_epitaph(status)
2041 }
2042
2043 fn is_closed(&self) -> bool {
2044 self.inner.channel().is_closed()
2045 }
2046 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
2047 self.inner.channel().on_closed()
2048 }
2049
2050 #[cfg(target_os = "fuchsia")]
2051 fn signal_peer(
2052 &self,
2053 clear_mask: zx::Signals,
2054 set_mask: zx::Signals,
2055 ) -> Result<(), zx_status::Status> {
2056 use fidl::Peered;
2057 self.inner.channel().signal_peer(clear_mask, set_mask)
2058 }
2059}
2060
2061impl DisplayControlHandle {}
2062
2063#[must_use = "FIDL methods require a response to be sent"]
2064#[derive(Debug)]
2065pub struct DisplayWatchResponder {
2066 control_handle: std::mem::ManuallyDrop<DisplayControlHandle>,
2067 tx_id: u32,
2068}
2069
2070impl std::ops::Drop for DisplayWatchResponder {
2074 fn drop(&mut self) {
2075 self.control_handle.shutdown();
2076 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2078 }
2079}
2080
2081impl fidl::endpoints::Responder for DisplayWatchResponder {
2082 type ControlHandle = DisplayControlHandle;
2083
2084 fn control_handle(&self) -> &DisplayControlHandle {
2085 &self.control_handle
2086 }
2087
2088 fn drop_without_shutdown(mut self) {
2089 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2091 std::mem::forget(self);
2093 }
2094}
2095
2096impl DisplayWatchResponder {
2097 pub fn send(self, mut settings: &DisplaySettings) -> Result<(), fidl::Error> {
2101 let _result = self.send_raw(settings);
2102 if _result.is_err() {
2103 self.control_handle.shutdown();
2104 }
2105 self.drop_without_shutdown();
2106 _result
2107 }
2108
2109 pub fn send_no_shutdown_on_err(
2111 self,
2112 mut settings: &DisplaySettings,
2113 ) -> Result<(), fidl::Error> {
2114 let _result = self.send_raw(settings);
2115 self.drop_without_shutdown();
2116 _result
2117 }
2118
2119 fn send_raw(&self, mut settings: &DisplaySettings) -> Result<(), fidl::Error> {
2120 self.control_handle.inner.send::<DisplayWatchResponse>(
2121 (settings,),
2122 self.tx_id,
2123 0x7da3212470364db1,
2124 fidl::encoding::DynamicFlags::empty(),
2125 )
2126 }
2127}
2128
2129#[must_use = "FIDL methods require a response to be sent"]
2130#[derive(Debug)]
2131pub struct DisplaySetResponder {
2132 control_handle: std::mem::ManuallyDrop<DisplayControlHandle>,
2133 tx_id: u32,
2134}
2135
2136impl std::ops::Drop for DisplaySetResponder {
2140 fn drop(&mut self) {
2141 self.control_handle.shutdown();
2142 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2144 }
2145}
2146
2147impl fidl::endpoints::Responder for DisplaySetResponder {
2148 type ControlHandle = DisplayControlHandle;
2149
2150 fn control_handle(&self) -> &DisplayControlHandle {
2151 &self.control_handle
2152 }
2153
2154 fn drop_without_shutdown(mut self) {
2155 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2157 std::mem::forget(self);
2159 }
2160}
2161
2162impl DisplaySetResponder {
2163 pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2167 let _result = self.send_raw(result);
2168 if _result.is_err() {
2169 self.control_handle.shutdown();
2170 }
2171 self.drop_without_shutdown();
2172 _result
2173 }
2174
2175 pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2177 let _result = self.send_raw(result);
2178 self.drop_without_shutdown();
2179 _result
2180 }
2181
2182 fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2183 self.control_handle
2184 .inner
2185 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
2186 result,
2187 self.tx_id,
2188 0x1029e06ace17479c,
2189 fidl::encoding::DynamicFlags::empty(),
2190 )
2191 }
2192}
2193
2194#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
2195pub struct DoNotDisturbMarker;
2196
2197impl fidl::endpoints::ProtocolMarker for DoNotDisturbMarker {
2198 type Proxy = DoNotDisturbProxy;
2199 type RequestStream = DoNotDisturbRequestStream;
2200 #[cfg(target_os = "fuchsia")]
2201 type SynchronousProxy = DoNotDisturbSynchronousProxy;
2202
2203 const DEBUG_NAME: &'static str = "fuchsia.settings.DoNotDisturb";
2204}
2205impl fidl::endpoints::DiscoverableProtocolMarker for DoNotDisturbMarker {}
2206pub type DoNotDisturbSetResult = Result<(), Error>;
2207
2208pub trait DoNotDisturbProxyInterface: Send + Sync {
2209 type WatchResponseFut: std::future::Future<Output = Result<DoNotDisturbSettings, fidl::Error>>
2210 + Send;
2211 fn r#watch(&self) -> Self::WatchResponseFut;
2212 type SetResponseFut: std::future::Future<Output = Result<DoNotDisturbSetResult, fidl::Error>>
2213 + Send;
2214 fn r#set(&self, settings: &DoNotDisturbSettings) -> Self::SetResponseFut;
2215}
2216#[derive(Debug)]
2217#[cfg(target_os = "fuchsia")]
2218pub struct DoNotDisturbSynchronousProxy {
2219 client: fidl::client::sync::Client,
2220}
2221
2222#[cfg(target_os = "fuchsia")]
2223impl fidl::endpoints::SynchronousProxy for DoNotDisturbSynchronousProxy {
2224 type Proxy = DoNotDisturbProxy;
2225 type Protocol = DoNotDisturbMarker;
2226
2227 fn from_channel(inner: fidl::Channel) -> Self {
2228 Self::new(inner)
2229 }
2230
2231 fn into_channel(self) -> fidl::Channel {
2232 self.client.into_channel()
2233 }
2234
2235 fn as_channel(&self) -> &fidl::Channel {
2236 self.client.as_channel()
2237 }
2238}
2239
2240#[cfg(target_os = "fuchsia")]
2241impl DoNotDisturbSynchronousProxy {
2242 pub fn new(channel: fidl::Channel) -> Self {
2243 let protocol_name = <DoNotDisturbMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
2244 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
2245 }
2246
2247 pub fn into_channel(self) -> fidl::Channel {
2248 self.client.into_channel()
2249 }
2250
2251 pub fn wait_for_event(
2254 &self,
2255 deadline: zx::MonotonicInstant,
2256 ) -> Result<DoNotDisturbEvent, fidl::Error> {
2257 DoNotDisturbEvent::decode(self.client.wait_for_event(deadline)?)
2258 }
2259
2260 pub fn r#watch(
2266 &self,
2267 ___deadline: zx::MonotonicInstant,
2268 ) -> Result<DoNotDisturbSettings, fidl::Error> {
2269 let _response =
2270 self.client.send_query::<fidl::encoding::EmptyPayload, DoNotDisturbWatchResponse>(
2271 (),
2272 0x1eeae2f97a5547fb,
2273 fidl::encoding::DynamicFlags::empty(),
2274 ___deadline,
2275 )?;
2276 Ok(_response.settings)
2277 }
2278
2279 pub fn r#set(
2282 &self,
2283 mut settings: &DoNotDisturbSettings,
2284 ___deadline: zx::MonotonicInstant,
2285 ) -> Result<DoNotDisturbSetResult, fidl::Error> {
2286 let _response = self.client.send_query::<
2287 DoNotDisturbSetRequest,
2288 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
2289 >(
2290 (settings,),
2291 0x7fef934e7f5777b0,
2292 fidl::encoding::DynamicFlags::empty(),
2293 ___deadline,
2294 )?;
2295 Ok(_response.map(|x| x))
2296 }
2297}
2298
2299#[cfg(target_os = "fuchsia")]
2300impl From<DoNotDisturbSynchronousProxy> for zx::Handle {
2301 fn from(value: DoNotDisturbSynchronousProxy) -> Self {
2302 value.into_channel().into()
2303 }
2304}
2305
2306#[cfg(target_os = "fuchsia")]
2307impl From<fidl::Channel> for DoNotDisturbSynchronousProxy {
2308 fn from(value: fidl::Channel) -> Self {
2309 Self::new(value)
2310 }
2311}
2312
2313#[derive(Debug, Clone)]
2314pub struct DoNotDisturbProxy {
2315 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
2316}
2317
2318impl fidl::endpoints::Proxy for DoNotDisturbProxy {
2319 type Protocol = DoNotDisturbMarker;
2320
2321 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
2322 Self::new(inner)
2323 }
2324
2325 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
2326 self.client.into_channel().map_err(|client| Self { client })
2327 }
2328
2329 fn as_channel(&self) -> &::fidl::AsyncChannel {
2330 self.client.as_channel()
2331 }
2332}
2333
2334impl DoNotDisturbProxy {
2335 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
2337 let protocol_name = <DoNotDisturbMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
2338 Self { client: fidl::client::Client::new(channel, protocol_name) }
2339 }
2340
2341 pub fn take_event_stream(&self) -> DoNotDisturbEventStream {
2347 DoNotDisturbEventStream { event_receiver: self.client.take_event_receiver() }
2348 }
2349
2350 pub fn r#watch(
2356 &self,
2357 ) -> fidl::client::QueryResponseFut<
2358 DoNotDisturbSettings,
2359 fidl::encoding::DefaultFuchsiaResourceDialect,
2360 > {
2361 DoNotDisturbProxyInterface::r#watch(self)
2362 }
2363
2364 pub fn r#set(
2367 &self,
2368 mut settings: &DoNotDisturbSettings,
2369 ) -> fidl::client::QueryResponseFut<
2370 DoNotDisturbSetResult,
2371 fidl::encoding::DefaultFuchsiaResourceDialect,
2372 > {
2373 DoNotDisturbProxyInterface::r#set(self, settings)
2374 }
2375}
2376
2377impl DoNotDisturbProxyInterface for DoNotDisturbProxy {
2378 type WatchResponseFut = fidl::client::QueryResponseFut<
2379 DoNotDisturbSettings,
2380 fidl::encoding::DefaultFuchsiaResourceDialect,
2381 >;
2382 fn r#watch(&self) -> Self::WatchResponseFut {
2383 fn _decode(
2384 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2385 ) -> Result<DoNotDisturbSettings, fidl::Error> {
2386 let _response = fidl::client::decode_transaction_body::<
2387 DoNotDisturbWatchResponse,
2388 fidl::encoding::DefaultFuchsiaResourceDialect,
2389 0x1eeae2f97a5547fb,
2390 >(_buf?)?;
2391 Ok(_response.settings)
2392 }
2393 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, DoNotDisturbSettings>(
2394 (),
2395 0x1eeae2f97a5547fb,
2396 fidl::encoding::DynamicFlags::empty(),
2397 _decode,
2398 )
2399 }
2400
2401 type SetResponseFut = fidl::client::QueryResponseFut<
2402 DoNotDisturbSetResult,
2403 fidl::encoding::DefaultFuchsiaResourceDialect,
2404 >;
2405 fn r#set(&self, mut settings: &DoNotDisturbSettings) -> Self::SetResponseFut {
2406 fn _decode(
2407 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
2408 ) -> Result<DoNotDisturbSetResult, fidl::Error> {
2409 let _response = fidl::client::decode_transaction_body::<
2410 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
2411 fidl::encoding::DefaultFuchsiaResourceDialect,
2412 0x7fef934e7f5777b0,
2413 >(_buf?)?;
2414 Ok(_response.map(|x| x))
2415 }
2416 self.client.send_query_and_decode::<DoNotDisturbSetRequest, DoNotDisturbSetResult>(
2417 (settings,),
2418 0x7fef934e7f5777b0,
2419 fidl::encoding::DynamicFlags::empty(),
2420 _decode,
2421 )
2422 }
2423}
2424
2425pub struct DoNotDisturbEventStream {
2426 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
2427}
2428
2429impl std::marker::Unpin for DoNotDisturbEventStream {}
2430
2431impl futures::stream::FusedStream for DoNotDisturbEventStream {
2432 fn is_terminated(&self) -> bool {
2433 self.event_receiver.is_terminated()
2434 }
2435}
2436
2437impl futures::Stream for DoNotDisturbEventStream {
2438 type Item = Result<DoNotDisturbEvent, fidl::Error>;
2439
2440 fn poll_next(
2441 mut self: std::pin::Pin<&mut Self>,
2442 cx: &mut std::task::Context<'_>,
2443 ) -> std::task::Poll<Option<Self::Item>> {
2444 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
2445 &mut self.event_receiver,
2446 cx
2447 )?) {
2448 Some(buf) => std::task::Poll::Ready(Some(DoNotDisturbEvent::decode(buf))),
2449 None => std::task::Poll::Ready(None),
2450 }
2451 }
2452}
2453
2454#[derive(Debug)]
2455pub enum DoNotDisturbEvent {}
2456
2457impl DoNotDisturbEvent {
2458 fn decode(
2460 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
2461 ) -> Result<DoNotDisturbEvent, fidl::Error> {
2462 let (bytes, _handles) = buf.split_mut();
2463 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
2464 debug_assert_eq!(tx_header.tx_id, 0);
2465 match tx_header.ordinal {
2466 _ => Err(fidl::Error::UnknownOrdinal {
2467 ordinal: tx_header.ordinal,
2468 protocol_name: <DoNotDisturbMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
2469 }),
2470 }
2471 }
2472}
2473
2474pub struct DoNotDisturbRequestStream {
2476 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
2477 is_terminated: bool,
2478}
2479
2480impl std::marker::Unpin for DoNotDisturbRequestStream {}
2481
2482impl futures::stream::FusedStream for DoNotDisturbRequestStream {
2483 fn is_terminated(&self) -> bool {
2484 self.is_terminated
2485 }
2486}
2487
2488impl fidl::endpoints::RequestStream for DoNotDisturbRequestStream {
2489 type Protocol = DoNotDisturbMarker;
2490 type ControlHandle = DoNotDisturbControlHandle;
2491
2492 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
2493 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
2494 }
2495
2496 fn control_handle(&self) -> Self::ControlHandle {
2497 DoNotDisturbControlHandle { inner: self.inner.clone() }
2498 }
2499
2500 fn into_inner(
2501 self,
2502 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
2503 {
2504 (self.inner, self.is_terminated)
2505 }
2506
2507 fn from_inner(
2508 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
2509 is_terminated: bool,
2510 ) -> Self {
2511 Self { inner, is_terminated }
2512 }
2513}
2514
2515impl futures::Stream for DoNotDisturbRequestStream {
2516 type Item = Result<DoNotDisturbRequest, fidl::Error>;
2517
2518 fn poll_next(
2519 mut self: std::pin::Pin<&mut Self>,
2520 cx: &mut std::task::Context<'_>,
2521 ) -> std::task::Poll<Option<Self::Item>> {
2522 let this = &mut *self;
2523 if this.inner.check_shutdown(cx) {
2524 this.is_terminated = true;
2525 return std::task::Poll::Ready(None);
2526 }
2527 if this.is_terminated {
2528 panic!("polled DoNotDisturbRequestStream after completion");
2529 }
2530 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
2531 |bytes, handles| {
2532 match this.inner.channel().read_etc(cx, bytes, handles) {
2533 std::task::Poll::Ready(Ok(())) => {}
2534 std::task::Poll::Pending => return std::task::Poll::Pending,
2535 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
2536 this.is_terminated = true;
2537 return std::task::Poll::Ready(None);
2538 }
2539 std::task::Poll::Ready(Err(e)) => {
2540 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
2541 e.into(),
2542 ))))
2543 }
2544 }
2545
2546 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
2548
2549 std::task::Poll::Ready(Some(match header.ordinal {
2550 0x1eeae2f97a5547fb => {
2551 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
2552 let mut req = fidl::new_empty!(
2553 fidl::encoding::EmptyPayload,
2554 fidl::encoding::DefaultFuchsiaResourceDialect
2555 );
2556 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
2557 let control_handle =
2558 DoNotDisturbControlHandle { inner: this.inner.clone() };
2559 Ok(DoNotDisturbRequest::Watch {
2560 responder: DoNotDisturbWatchResponder {
2561 control_handle: std::mem::ManuallyDrop::new(control_handle),
2562 tx_id: header.tx_id,
2563 },
2564 })
2565 }
2566 0x7fef934e7f5777b0 => {
2567 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
2568 let mut req = fidl::new_empty!(
2569 DoNotDisturbSetRequest,
2570 fidl::encoding::DefaultFuchsiaResourceDialect
2571 );
2572 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DoNotDisturbSetRequest>(&header, _body_bytes, handles, &mut req)?;
2573 let control_handle =
2574 DoNotDisturbControlHandle { inner: this.inner.clone() };
2575 Ok(DoNotDisturbRequest::Set {
2576 settings: req.settings,
2577
2578 responder: DoNotDisturbSetResponder {
2579 control_handle: std::mem::ManuallyDrop::new(control_handle),
2580 tx_id: header.tx_id,
2581 },
2582 })
2583 }
2584 _ => Err(fidl::Error::UnknownOrdinal {
2585 ordinal: header.ordinal,
2586 protocol_name:
2587 <DoNotDisturbMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
2588 }),
2589 }))
2590 },
2591 )
2592 }
2593}
2594
2595#[derive(Debug)]
2604pub enum DoNotDisturbRequest {
2605 Watch { responder: DoNotDisturbWatchResponder },
2611 Set { settings: DoNotDisturbSettings, responder: DoNotDisturbSetResponder },
2614}
2615
2616impl DoNotDisturbRequest {
2617 #[allow(irrefutable_let_patterns)]
2618 pub fn into_watch(self) -> Option<(DoNotDisturbWatchResponder)> {
2619 if let DoNotDisturbRequest::Watch { responder } = self {
2620 Some((responder))
2621 } else {
2622 None
2623 }
2624 }
2625
2626 #[allow(irrefutable_let_patterns)]
2627 pub fn into_set(self) -> Option<(DoNotDisturbSettings, DoNotDisturbSetResponder)> {
2628 if let DoNotDisturbRequest::Set { settings, responder } = self {
2629 Some((settings, responder))
2630 } else {
2631 None
2632 }
2633 }
2634
2635 pub fn method_name(&self) -> &'static str {
2637 match *self {
2638 DoNotDisturbRequest::Watch { .. } => "watch",
2639 DoNotDisturbRequest::Set { .. } => "set",
2640 }
2641 }
2642}
2643
2644#[derive(Debug, Clone)]
2645pub struct DoNotDisturbControlHandle {
2646 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
2647}
2648
2649impl fidl::endpoints::ControlHandle for DoNotDisturbControlHandle {
2650 fn shutdown(&self) {
2651 self.inner.shutdown()
2652 }
2653 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
2654 self.inner.shutdown_with_epitaph(status)
2655 }
2656
2657 fn is_closed(&self) -> bool {
2658 self.inner.channel().is_closed()
2659 }
2660 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
2661 self.inner.channel().on_closed()
2662 }
2663
2664 #[cfg(target_os = "fuchsia")]
2665 fn signal_peer(
2666 &self,
2667 clear_mask: zx::Signals,
2668 set_mask: zx::Signals,
2669 ) -> Result<(), zx_status::Status> {
2670 use fidl::Peered;
2671 self.inner.channel().signal_peer(clear_mask, set_mask)
2672 }
2673}
2674
2675impl DoNotDisturbControlHandle {}
2676
2677#[must_use = "FIDL methods require a response to be sent"]
2678#[derive(Debug)]
2679pub struct DoNotDisturbWatchResponder {
2680 control_handle: std::mem::ManuallyDrop<DoNotDisturbControlHandle>,
2681 tx_id: u32,
2682}
2683
2684impl std::ops::Drop for DoNotDisturbWatchResponder {
2688 fn drop(&mut self) {
2689 self.control_handle.shutdown();
2690 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2692 }
2693}
2694
2695impl fidl::endpoints::Responder for DoNotDisturbWatchResponder {
2696 type ControlHandle = DoNotDisturbControlHandle;
2697
2698 fn control_handle(&self) -> &DoNotDisturbControlHandle {
2699 &self.control_handle
2700 }
2701
2702 fn drop_without_shutdown(mut self) {
2703 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2705 std::mem::forget(self);
2707 }
2708}
2709
2710impl DoNotDisturbWatchResponder {
2711 pub fn send(self, mut settings: &DoNotDisturbSettings) -> Result<(), fidl::Error> {
2715 let _result = self.send_raw(settings);
2716 if _result.is_err() {
2717 self.control_handle.shutdown();
2718 }
2719 self.drop_without_shutdown();
2720 _result
2721 }
2722
2723 pub fn send_no_shutdown_on_err(
2725 self,
2726 mut settings: &DoNotDisturbSettings,
2727 ) -> Result<(), fidl::Error> {
2728 let _result = self.send_raw(settings);
2729 self.drop_without_shutdown();
2730 _result
2731 }
2732
2733 fn send_raw(&self, mut settings: &DoNotDisturbSettings) -> Result<(), fidl::Error> {
2734 self.control_handle.inner.send::<DoNotDisturbWatchResponse>(
2735 (settings,),
2736 self.tx_id,
2737 0x1eeae2f97a5547fb,
2738 fidl::encoding::DynamicFlags::empty(),
2739 )
2740 }
2741}
2742
2743#[must_use = "FIDL methods require a response to be sent"]
2744#[derive(Debug)]
2745pub struct DoNotDisturbSetResponder {
2746 control_handle: std::mem::ManuallyDrop<DoNotDisturbControlHandle>,
2747 tx_id: u32,
2748}
2749
2750impl std::ops::Drop for DoNotDisturbSetResponder {
2754 fn drop(&mut self) {
2755 self.control_handle.shutdown();
2756 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2758 }
2759}
2760
2761impl fidl::endpoints::Responder for DoNotDisturbSetResponder {
2762 type ControlHandle = DoNotDisturbControlHandle;
2763
2764 fn control_handle(&self) -> &DoNotDisturbControlHandle {
2765 &self.control_handle
2766 }
2767
2768 fn drop_without_shutdown(mut self) {
2769 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2771 std::mem::forget(self);
2773 }
2774}
2775
2776impl DoNotDisturbSetResponder {
2777 pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2781 let _result = self.send_raw(result);
2782 if _result.is_err() {
2783 self.control_handle.shutdown();
2784 }
2785 self.drop_without_shutdown();
2786 _result
2787 }
2788
2789 pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2791 let _result = self.send_raw(result);
2792 self.drop_without_shutdown();
2793 _result
2794 }
2795
2796 fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2797 self.control_handle
2798 .inner
2799 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
2800 result,
2801 self.tx_id,
2802 0x7fef934e7f5777b0,
2803 fidl::encoding::DynamicFlags::empty(),
2804 )
2805 }
2806}
2807
2808#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
2809pub struct FactoryResetMarker;
2810
2811impl fidl::endpoints::ProtocolMarker for FactoryResetMarker {
2812 type Proxy = FactoryResetProxy;
2813 type RequestStream = FactoryResetRequestStream;
2814 #[cfg(target_os = "fuchsia")]
2815 type SynchronousProxy = FactoryResetSynchronousProxy;
2816
2817 const DEBUG_NAME: &'static str = "fuchsia.settings.FactoryReset";
2818}
2819impl fidl::endpoints::DiscoverableProtocolMarker for FactoryResetMarker {}
2820pub type FactoryResetSetResult = Result<(), Error>;
2821
2822pub trait FactoryResetProxyInterface: Send + Sync {
2823 type WatchResponseFut: std::future::Future<Output = Result<FactoryResetSettings, fidl::Error>>
2824 + Send;
2825 fn r#watch(&self) -> Self::WatchResponseFut;
2826 type SetResponseFut: std::future::Future<Output = Result<FactoryResetSetResult, fidl::Error>>
2827 + Send;
2828 fn r#set(&self, settings: &FactoryResetSettings) -> Self::SetResponseFut;
2829}
2830#[derive(Debug)]
2831#[cfg(target_os = "fuchsia")]
2832pub struct FactoryResetSynchronousProxy {
2833 client: fidl::client::sync::Client,
2834}
2835
2836#[cfg(target_os = "fuchsia")]
2837impl fidl::endpoints::SynchronousProxy for FactoryResetSynchronousProxy {
2838 type Proxy = FactoryResetProxy;
2839 type Protocol = FactoryResetMarker;
2840
2841 fn from_channel(inner: fidl::Channel) -> Self {
2842 Self::new(inner)
2843 }
2844
2845 fn into_channel(self) -> fidl::Channel {
2846 self.client.into_channel()
2847 }
2848
2849 fn as_channel(&self) -> &fidl::Channel {
2850 self.client.as_channel()
2851 }
2852}
2853
2854#[cfg(target_os = "fuchsia")]
2855impl FactoryResetSynchronousProxy {
2856 pub fn new(channel: fidl::Channel) -> Self {
2857 let protocol_name = <FactoryResetMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
2858 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
2859 }
2860
2861 pub fn into_channel(self) -> fidl::Channel {
2862 self.client.into_channel()
2863 }
2864
2865 pub fn wait_for_event(
2868 &self,
2869 deadline: zx::MonotonicInstant,
2870 ) -> Result<FactoryResetEvent, fidl::Error> {
2871 FactoryResetEvent::decode(self.client.wait_for_event(deadline)?)
2872 }
2873
2874 pub fn r#watch(
2883 &self,
2884 ___deadline: zx::MonotonicInstant,
2885 ) -> Result<FactoryResetSettings, fidl::Error> {
2886 let _response =
2887 self.client.send_query::<fidl::encoding::EmptyPayload, FactoryResetWatchResponse>(
2888 (),
2889 0x50cfc9906eb406a1,
2890 fidl::encoding::DynamicFlags::empty(),
2891 ___deadline,
2892 )?;
2893 Ok(_response.settings)
2894 }
2895
2896 pub fn r#set(
2899 &self,
2900 mut settings: &FactoryResetSettings,
2901 ___deadline: zx::MonotonicInstant,
2902 ) -> Result<FactoryResetSetResult, fidl::Error> {
2903 let _response = self.client.send_query::<
2904 FactoryResetSetRequest,
2905 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
2906 >(
2907 (settings,),
2908 0x5b35942c1cb1eca8,
2909 fidl::encoding::DynamicFlags::empty(),
2910 ___deadline,
2911 )?;
2912 Ok(_response.map(|x| x))
2913 }
2914}
2915
2916#[cfg(target_os = "fuchsia")]
2917impl From<FactoryResetSynchronousProxy> for zx::Handle {
2918 fn from(value: FactoryResetSynchronousProxy) -> Self {
2919 value.into_channel().into()
2920 }
2921}
2922
2923#[cfg(target_os = "fuchsia")]
2924impl From<fidl::Channel> for FactoryResetSynchronousProxy {
2925 fn from(value: fidl::Channel) -> Self {
2926 Self::new(value)
2927 }
2928}
2929
2930#[derive(Debug, Clone)]
2931pub struct FactoryResetProxy {
2932 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
2933}
2934
2935impl fidl::endpoints::Proxy for FactoryResetProxy {
2936 type Protocol = FactoryResetMarker;
2937
2938 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
2939 Self::new(inner)
2940 }
2941
2942 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
2943 self.client.into_channel().map_err(|client| Self { client })
2944 }
2945
2946 fn as_channel(&self) -> &::fidl::AsyncChannel {
2947 self.client.as_channel()
2948 }
2949}
2950
2951impl FactoryResetProxy {
2952 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
2954 let protocol_name = <FactoryResetMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
2955 Self { client: fidl::client::Client::new(channel, protocol_name) }
2956 }
2957
2958 pub fn take_event_stream(&self) -> FactoryResetEventStream {
2964 FactoryResetEventStream { event_receiver: self.client.take_event_receiver() }
2965 }
2966
2967 pub fn r#watch(
2976 &self,
2977 ) -> fidl::client::QueryResponseFut<
2978 FactoryResetSettings,
2979 fidl::encoding::DefaultFuchsiaResourceDialect,
2980 > {
2981 FactoryResetProxyInterface::r#watch(self)
2982 }
2983
2984 pub fn r#set(
2987 &self,
2988 mut settings: &FactoryResetSettings,
2989 ) -> fidl::client::QueryResponseFut<
2990 FactoryResetSetResult,
2991 fidl::encoding::DefaultFuchsiaResourceDialect,
2992 > {
2993 FactoryResetProxyInterface::r#set(self, settings)
2994 }
2995}
2996
2997impl FactoryResetProxyInterface for FactoryResetProxy {
2998 type WatchResponseFut = fidl::client::QueryResponseFut<
2999 FactoryResetSettings,
3000 fidl::encoding::DefaultFuchsiaResourceDialect,
3001 >;
3002 fn r#watch(&self) -> Self::WatchResponseFut {
3003 fn _decode(
3004 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
3005 ) -> Result<FactoryResetSettings, fidl::Error> {
3006 let _response = fidl::client::decode_transaction_body::<
3007 FactoryResetWatchResponse,
3008 fidl::encoding::DefaultFuchsiaResourceDialect,
3009 0x50cfc9906eb406a1,
3010 >(_buf?)?;
3011 Ok(_response.settings)
3012 }
3013 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, FactoryResetSettings>(
3014 (),
3015 0x50cfc9906eb406a1,
3016 fidl::encoding::DynamicFlags::empty(),
3017 _decode,
3018 )
3019 }
3020
3021 type SetResponseFut = fidl::client::QueryResponseFut<
3022 FactoryResetSetResult,
3023 fidl::encoding::DefaultFuchsiaResourceDialect,
3024 >;
3025 fn r#set(&self, mut settings: &FactoryResetSettings) -> Self::SetResponseFut {
3026 fn _decode(
3027 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
3028 ) -> Result<FactoryResetSetResult, fidl::Error> {
3029 let _response = fidl::client::decode_transaction_body::<
3030 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
3031 fidl::encoding::DefaultFuchsiaResourceDialect,
3032 0x5b35942c1cb1eca8,
3033 >(_buf?)?;
3034 Ok(_response.map(|x| x))
3035 }
3036 self.client.send_query_and_decode::<FactoryResetSetRequest, FactoryResetSetResult>(
3037 (settings,),
3038 0x5b35942c1cb1eca8,
3039 fidl::encoding::DynamicFlags::empty(),
3040 _decode,
3041 )
3042 }
3043}
3044
3045pub struct FactoryResetEventStream {
3046 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
3047}
3048
3049impl std::marker::Unpin for FactoryResetEventStream {}
3050
3051impl futures::stream::FusedStream for FactoryResetEventStream {
3052 fn is_terminated(&self) -> bool {
3053 self.event_receiver.is_terminated()
3054 }
3055}
3056
3057impl futures::Stream for FactoryResetEventStream {
3058 type Item = Result<FactoryResetEvent, fidl::Error>;
3059
3060 fn poll_next(
3061 mut self: std::pin::Pin<&mut Self>,
3062 cx: &mut std::task::Context<'_>,
3063 ) -> std::task::Poll<Option<Self::Item>> {
3064 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
3065 &mut self.event_receiver,
3066 cx
3067 )?) {
3068 Some(buf) => std::task::Poll::Ready(Some(FactoryResetEvent::decode(buf))),
3069 None => std::task::Poll::Ready(None),
3070 }
3071 }
3072}
3073
3074#[derive(Debug)]
3075pub enum FactoryResetEvent {}
3076
3077impl FactoryResetEvent {
3078 fn decode(
3080 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
3081 ) -> Result<FactoryResetEvent, fidl::Error> {
3082 let (bytes, _handles) = buf.split_mut();
3083 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
3084 debug_assert_eq!(tx_header.tx_id, 0);
3085 match tx_header.ordinal {
3086 _ => Err(fidl::Error::UnknownOrdinal {
3087 ordinal: tx_header.ordinal,
3088 protocol_name: <FactoryResetMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
3089 }),
3090 }
3091 }
3092}
3093
3094pub struct FactoryResetRequestStream {
3096 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
3097 is_terminated: bool,
3098}
3099
3100impl std::marker::Unpin for FactoryResetRequestStream {}
3101
3102impl futures::stream::FusedStream for FactoryResetRequestStream {
3103 fn is_terminated(&self) -> bool {
3104 self.is_terminated
3105 }
3106}
3107
3108impl fidl::endpoints::RequestStream for FactoryResetRequestStream {
3109 type Protocol = FactoryResetMarker;
3110 type ControlHandle = FactoryResetControlHandle;
3111
3112 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
3113 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
3114 }
3115
3116 fn control_handle(&self) -> Self::ControlHandle {
3117 FactoryResetControlHandle { inner: self.inner.clone() }
3118 }
3119
3120 fn into_inner(
3121 self,
3122 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
3123 {
3124 (self.inner, self.is_terminated)
3125 }
3126
3127 fn from_inner(
3128 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
3129 is_terminated: bool,
3130 ) -> Self {
3131 Self { inner, is_terminated }
3132 }
3133}
3134
3135impl futures::Stream for FactoryResetRequestStream {
3136 type Item = Result<FactoryResetRequest, fidl::Error>;
3137
3138 fn poll_next(
3139 mut self: std::pin::Pin<&mut Self>,
3140 cx: &mut std::task::Context<'_>,
3141 ) -> std::task::Poll<Option<Self::Item>> {
3142 let this = &mut *self;
3143 if this.inner.check_shutdown(cx) {
3144 this.is_terminated = true;
3145 return std::task::Poll::Ready(None);
3146 }
3147 if this.is_terminated {
3148 panic!("polled FactoryResetRequestStream after completion");
3149 }
3150 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
3151 |bytes, handles| {
3152 match this.inner.channel().read_etc(cx, bytes, handles) {
3153 std::task::Poll::Ready(Ok(())) => {}
3154 std::task::Poll::Pending => return std::task::Poll::Pending,
3155 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
3156 this.is_terminated = true;
3157 return std::task::Poll::Ready(None);
3158 }
3159 std::task::Poll::Ready(Err(e)) => {
3160 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
3161 e.into(),
3162 ))))
3163 }
3164 }
3165
3166 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
3168
3169 std::task::Poll::Ready(Some(match header.ordinal {
3170 0x50cfc9906eb406a1 => {
3171 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3172 let mut req = fidl::new_empty!(
3173 fidl::encoding::EmptyPayload,
3174 fidl::encoding::DefaultFuchsiaResourceDialect
3175 );
3176 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
3177 let control_handle =
3178 FactoryResetControlHandle { inner: this.inner.clone() };
3179 Ok(FactoryResetRequest::Watch {
3180 responder: FactoryResetWatchResponder {
3181 control_handle: std::mem::ManuallyDrop::new(control_handle),
3182 tx_id: header.tx_id,
3183 },
3184 })
3185 }
3186 0x5b35942c1cb1eca8 => {
3187 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3188 let mut req = fidl::new_empty!(
3189 FactoryResetSetRequest,
3190 fidl::encoding::DefaultFuchsiaResourceDialect
3191 );
3192 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<FactoryResetSetRequest>(&header, _body_bytes, handles, &mut req)?;
3193 let control_handle =
3194 FactoryResetControlHandle { inner: this.inner.clone() };
3195 Ok(FactoryResetRequest::Set {
3196 settings: req.settings,
3197
3198 responder: FactoryResetSetResponder {
3199 control_handle: std::mem::ManuallyDrop::new(control_handle),
3200 tx_id: header.tx_id,
3201 },
3202 })
3203 }
3204 _ => Err(fidl::Error::UnknownOrdinal {
3205 ordinal: header.ordinal,
3206 protocol_name:
3207 <FactoryResetMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
3208 }),
3209 }))
3210 },
3211 )
3212 }
3213}
3214
3215#[derive(Debug)]
3217pub enum FactoryResetRequest {
3218 Watch { responder: FactoryResetWatchResponder },
3227 Set { settings: FactoryResetSettings, responder: FactoryResetSetResponder },
3230}
3231
3232impl FactoryResetRequest {
3233 #[allow(irrefutable_let_patterns)]
3234 pub fn into_watch(self) -> Option<(FactoryResetWatchResponder)> {
3235 if let FactoryResetRequest::Watch { responder } = self {
3236 Some((responder))
3237 } else {
3238 None
3239 }
3240 }
3241
3242 #[allow(irrefutable_let_patterns)]
3243 pub fn into_set(self) -> Option<(FactoryResetSettings, FactoryResetSetResponder)> {
3244 if let FactoryResetRequest::Set { settings, responder } = self {
3245 Some((settings, responder))
3246 } else {
3247 None
3248 }
3249 }
3250
3251 pub fn method_name(&self) -> &'static str {
3253 match *self {
3254 FactoryResetRequest::Watch { .. } => "watch",
3255 FactoryResetRequest::Set { .. } => "set",
3256 }
3257 }
3258}
3259
3260#[derive(Debug, Clone)]
3261pub struct FactoryResetControlHandle {
3262 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
3263}
3264
3265impl fidl::endpoints::ControlHandle for FactoryResetControlHandle {
3266 fn shutdown(&self) {
3267 self.inner.shutdown()
3268 }
3269 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
3270 self.inner.shutdown_with_epitaph(status)
3271 }
3272
3273 fn is_closed(&self) -> bool {
3274 self.inner.channel().is_closed()
3275 }
3276 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
3277 self.inner.channel().on_closed()
3278 }
3279
3280 #[cfg(target_os = "fuchsia")]
3281 fn signal_peer(
3282 &self,
3283 clear_mask: zx::Signals,
3284 set_mask: zx::Signals,
3285 ) -> Result<(), zx_status::Status> {
3286 use fidl::Peered;
3287 self.inner.channel().signal_peer(clear_mask, set_mask)
3288 }
3289}
3290
3291impl FactoryResetControlHandle {}
3292
3293#[must_use = "FIDL methods require a response to be sent"]
3294#[derive(Debug)]
3295pub struct FactoryResetWatchResponder {
3296 control_handle: std::mem::ManuallyDrop<FactoryResetControlHandle>,
3297 tx_id: u32,
3298}
3299
3300impl std::ops::Drop for FactoryResetWatchResponder {
3304 fn drop(&mut self) {
3305 self.control_handle.shutdown();
3306 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
3308 }
3309}
3310
3311impl fidl::endpoints::Responder for FactoryResetWatchResponder {
3312 type ControlHandle = FactoryResetControlHandle;
3313
3314 fn control_handle(&self) -> &FactoryResetControlHandle {
3315 &self.control_handle
3316 }
3317
3318 fn drop_without_shutdown(mut self) {
3319 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
3321 std::mem::forget(self);
3323 }
3324}
3325
3326impl FactoryResetWatchResponder {
3327 pub fn send(self, mut settings: &FactoryResetSettings) -> Result<(), fidl::Error> {
3331 let _result = self.send_raw(settings);
3332 if _result.is_err() {
3333 self.control_handle.shutdown();
3334 }
3335 self.drop_without_shutdown();
3336 _result
3337 }
3338
3339 pub fn send_no_shutdown_on_err(
3341 self,
3342 mut settings: &FactoryResetSettings,
3343 ) -> Result<(), fidl::Error> {
3344 let _result = self.send_raw(settings);
3345 self.drop_without_shutdown();
3346 _result
3347 }
3348
3349 fn send_raw(&self, mut settings: &FactoryResetSettings) -> Result<(), fidl::Error> {
3350 self.control_handle.inner.send::<FactoryResetWatchResponse>(
3351 (settings,),
3352 self.tx_id,
3353 0x50cfc9906eb406a1,
3354 fidl::encoding::DynamicFlags::empty(),
3355 )
3356 }
3357}
3358
3359#[must_use = "FIDL methods require a response to be sent"]
3360#[derive(Debug)]
3361pub struct FactoryResetSetResponder {
3362 control_handle: std::mem::ManuallyDrop<FactoryResetControlHandle>,
3363 tx_id: u32,
3364}
3365
3366impl std::ops::Drop for FactoryResetSetResponder {
3370 fn drop(&mut self) {
3371 self.control_handle.shutdown();
3372 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
3374 }
3375}
3376
3377impl fidl::endpoints::Responder for FactoryResetSetResponder {
3378 type ControlHandle = FactoryResetControlHandle;
3379
3380 fn control_handle(&self) -> &FactoryResetControlHandle {
3381 &self.control_handle
3382 }
3383
3384 fn drop_without_shutdown(mut self) {
3385 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
3387 std::mem::forget(self);
3389 }
3390}
3391
3392impl FactoryResetSetResponder {
3393 pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
3397 let _result = self.send_raw(result);
3398 if _result.is_err() {
3399 self.control_handle.shutdown();
3400 }
3401 self.drop_without_shutdown();
3402 _result
3403 }
3404
3405 pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
3407 let _result = self.send_raw(result);
3408 self.drop_without_shutdown();
3409 _result
3410 }
3411
3412 fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
3413 self.control_handle
3414 .inner
3415 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
3416 result,
3417 self.tx_id,
3418 0x5b35942c1cb1eca8,
3419 fidl::encoding::DynamicFlags::empty(),
3420 )
3421 }
3422}
3423
3424#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
3425pub struct InputMarker;
3426
3427impl fidl::endpoints::ProtocolMarker for InputMarker {
3428 type Proxy = InputProxy;
3429 type RequestStream = InputRequestStream;
3430 #[cfg(target_os = "fuchsia")]
3431 type SynchronousProxy = InputSynchronousProxy;
3432
3433 const DEBUG_NAME: &'static str = "fuchsia.settings.Input";
3434}
3435impl fidl::endpoints::DiscoverableProtocolMarker for InputMarker {}
3436pub type InputSetResult = Result<(), Error>;
3437
3438pub trait InputProxyInterface: Send + Sync {
3439 type WatchResponseFut: std::future::Future<Output = Result<InputSettings, fidl::Error>> + Send;
3440 fn r#watch(&self) -> Self::WatchResponseFut;
3441 type SetResponseFut: std::future::Future<Output = Result<InputSetResult, fidl::Error>> + Send;
3442 fn r#set(&self, input_states: &[InputState]) -> Self::SetResponseFut;
3443}
3444#[derive(Debug)]
3445#[cfg(target_os = "fuchsia")]
3446pub struct InputSynchronousProxy {
3447 client: fidl::client::sync::Client,
3448}
3449
3450#[cfg(target_os = "fuchsia")]
3451impl fidl::endpoints::SynchronousProxy for InputSynchronousProxy {
3452 type Proxy = InputProxy;
3453 type Protocol = InputMarker;
3454
3455 fn from_channel(inner: fidl::Channel) -> Self {
3456 Self::new(inner)
3457 }
3458
3459 fn into_channel(self) -> fidl::Channel {
3460 self.client.into_channel()
3461 }
3462
3463 fn as_channel(&self) -> &fidl::Channel {
3464 self.client.as_channel()
3465 }
3466}
3467
3468#[cfg(target_os = "fuchsia")]
3469impl InputSynchronousProxy {
3470 pub fn new(channel: fidl::Channel) -> Self {
3471 let protocol_name = <InputMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
3472 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
3473 }
3474
3475 pub fn into_channel(self) -> fidl::Channel {
3476 self.client.into_channel()
3477 }
3478
3479 pub fn wait_for_event(
3482 &self,
3483 deadline: zx::MonotonicInstant,
3484 ) -> Result<InputEvent, fidl::Error> {
3485 InputEvent::decode(self.client.wait_for_event(deadline)?)
3486 }
3487
3488 pub fn r#watch(&self, ___deadline: zx::MonotonicInstant) -> Result<InputSettings, fidl::Error> {
3505 let _response =
3506 self.client.send_query::<fidl::encoding::EmptyPayload, InputWatchResponse>(
3507 (),
3508 0x1bc41a7e0edd19c9,
3509 fidl::encoding::DynamicFlags::empty(),
3510 ___deadline,
3511 )?;
3512 Ok(_response.settings)
3513 }
3514
3515 pub fn r#set(
3522 &self,
3523 mut input_states: &[InputState],
3524 ___deadline: zx::MonotonicInstant,
3525 ) -> Result<InputSetResult, fidl::Error> {
3526 let _response = self.client.send_query::<InputSetRequest, fidl::encoding::ResultType<
3527 fidl::encoding::EmptyStruct,
3528 Error,
3529 >>(
3530 (input_states,),
3531 0x2447379e693141ca,
3532 fidl::encoding::DynamicFlags::empty(),
3533 ___deadline,
3534 )?;
3535 Ok(_response.map(|x| x))
3536 }
3537}
3538
3539#[cfg(target_os = "fuchsia")]
3540impl From<InputSynchronousProxy> for zx::Handle {
3541 fn from(value: InputSynchronousProxy) -> Self {
3542 value.into_channel().into()
3543 }
3544}
3545
3546#[cfg(target_os = "fuchsia")]
3547impl From<fidl::Channel> for InputSynchronousProxy {
3548 fn from(value: fidl::Channel) -> Self {
3549 Self::new(value)
3550 }
3551}
3552
3553#[derive(Debug, Clone)]
3554pub struct InputProxy {
3555 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
3556}
3557
3558impl fidl::endpoints::Proxy for InputProxy {
3559 type Protocol = InputMarker;
3560
3561 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
3562 Self::new(inner)
3563 }
3564
3565 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
3566 self.client.into_channel().map_err(|client| Self { client })
3567 }
3568
3569 fn as_channel(&self) -> &::fidl::AsyncChannel {
3570 self.client.as_channel()
3571 }
3572}
3573
3574impl InputProxy {
3575 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
3577 let protocol_name = <InputMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
3578 Self { client: fidl::client::Client::new(channel, protocol_name) }
3579 }
3580
3581 pub fn take_event_stream(&self) -> InputEventStream {
3587 InputEventStream { event_receiver: self.client.take_event_receiver() }
3588 }
3589
3590 pub fn r#watch(
3607 &self,
3608 ) -> fidl::client::QueryResponseFut<InputSettings, fidl::encoding::DefaultFuchsiaResourceDialect>
3609 {
3610 InputProxyInterface::r#watch(self)
3611 }
3612
3613 pub fn r#set(
3620 &self,
3621 mut input_states: &[InputState],
3622 ) -> fidl::client::QueryResponseFut<InputSetResult, fidl::encoding::DefaultFuchsiaResourceDialect>
3623 {
3624 InputProxyInterface::r#set(self, input_states)
3625 }
3626}
3627
3628impl InputProxyInterface for InputProxy {
3629 type WatchResponseFut = fidl::client::QueryResponseFut<
3630 InputSettings,
3631 fidl::encoding::DefaultFuchsiaResourceDialect,
3632 >;
3633 fn r#watch(&self) -> Self::WatchResponseFut {
3634 fn _decode(
3635 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
3636 ) -> Result<InputSettings, fidl::Error> {
3637 let _response = fidl::client::decode_transaction_body::<
3638 InputWatchResponse,
3639 fidl::encoding::DefaultFuchsiaResourceDialect,
3640 0x1bc41a7e0edd19c9,
3641 >(_buf?)?;
3642 Ok(_response.settings)
3643 }
3644 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, InputSettings>(
3645 (),
3646 0x1bc41a7e0edd19c9,
3647 fidl::encoding::DynamicFlags::empty(),
3648 _decode,
3649 )
3650 }
3651
3652 type SetResponseFut = fidl::client::QueryResponseFut<
3653 InputSetResult,
3654 fidl::encoding::DefaultFuchsiaResourceDialect,
3655 >;
3656 fn r#set(&self, mut input_states: &[InputState]) -> Self::SetResponseFut {
3657 fn _decode(
3658 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
3659 ) -> Result<InputSetResult, fidl::Error> {
3660 let _response = fidl::client::decode_transaction_body::<
3661 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
3662 fidl::encoding::DefaultFuchsiaResourceDialect,
3663 0x2447379e693141ca,
3664 >(_buf?)?;
3665 Ok(_response.map(|x| x))
3666 }
3667 self.client.send_query_and_decode::<InputSetRequest, InputSetResult>(
3668 (input_states,),
3669 0x2447379e693141ca,
3670 fidl::encoding::DynamicFlags::empty(),
3671 _decode,
3672 )
3673 }
3674}
3675
3676pub struct InputEventStream {
3677 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
3678}
3679
3680impl std::marker::Unpin for InputEventStream {}
3681
3682impl futures::stream::FusedStream for InputEventStream {
3683 fn is_terminated(&self) -> bool {
3684 self.event_receiver.is_terminated()
3685 }
3686}
3687
3688impl futures::Stream for InputEventStream {
3689 type Item = Result<InputEvent, fidl::Error>;
3690
3691 fn poll_next(
3692 mut self: std::pin::Pin<&mut Self>,
3693 cx: &mut std::task::Context<'_>,
3694 ) -> std::task::Poll<Option<Self::Item>> {
3695 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
3696 &mut self.event_receiver,
3697 cx
3698 )?) {
3699 Some(buf) => std::task::Poll::Ready(Some(InputEvent::decode(buf))),
3700 None => std::task::Poll::Ready(None),
3701 }
3702 }
3703}
3704
3705#[derive(Debug)]
3706pub enum InputEvent {}
3707
3708impl InputEvent {
3709 fn decode(
3711 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
3712 ) -> Result<InputEvent, fidl::Error> {
3713 let (bytes, _handles) = buf.split_mut();
3714 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
3715 debug_assert_eq!(tx_header.tx_id, 0);
3716 match tx_header.ordinal {
3717 _ => Err(fidl::Error::UnknownOrdinal {
3718 ordinal: tx_header.ordinal,
3719 protocol_name: <InputMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
3720 }),
3721 }
3722 }
3723}
3724
3725pub struct InputRequestStream {
3727 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
3728 is_terminated: bool,
3729}
3730
3731impl std::marker::Unpin for InputRequestStream {}
3732
3733impl futures::stream::FusedStream for InputRequestStream {
3734 fn is_terminated(&self) -> bool {
3735 self.is_terminated
3736 }
3737}
3738
3739impl fidl::endpoints::RequestStream for InputRequestStream {
3740 type Protocol = InputMarker;
3741 type ControlHandle = InputControlHandle;
3742
3743 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
3744 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
3745 }
3746
3747 fn control_handle(&self) -> Self::ControlHandle {
3748 InputControlHandle { inner: self.inner.clone() }
3749 }
3750
3751 fn into_inner(
3752 self,
3753 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
3754 {
3755 (self.inner, self.is_terminated)
3756 }
3757
3758 fn from_inner(
3759 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
3760 is_terminated: bool,
3761 ) -> Self {
3762 Self { inner, is_terminated }
3763 }
3764}
3765
3766impl futures::Stream for InputRequestStream {
3767 type Item = Result<InputRequest, fidl::Error>;
3768
3769 fn poll_next(
3770 mut self: std::pin::Pin<&mut Self>,
3771 cx: &mut std::task::Context<'_>,
3772 ) -> std::task::Poll<Option<Self::Item>> {
3773 let this = &mut *self;
3774 if this.inner.check_shutdown(cx) {
3775 this.is_terminated = true;
3776 return std::task::Poll::Ready(None);
3777 }
3778 if this.is_terminated {
3779 panic!("polled InputRequestStream after completion");
3780 }
3781 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
3782 |bytes, handles| {
3783 match this.inner.channel().read_etc(cx, bytes, handles) {
3784 std::task::Poll::Ready(Ok(())) => {}
3785 std::task::Poll::Pending => return std::task::Poll::Pending,
3786 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
3787 this.is_terminated = true;
3788 return std::task::Poll::Ready(None);
3789 }
3790 std::task::Poll::Ready(Err(e)) => {
3791 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
3792 e.into(),
3793 ))))
3794 }
3795 }
3796
3797 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
3799
3800 std::task::Poll::Ready(Some(match header.ordinal {
3801 0x1bc41a7e0edd19c9 => {
3802 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3803 let mut req = fidl::new_empty!(
3804 fidl::encoding::EmptyPayload,
3805 fidl::encoding::DefaultFuchsiaResourceDialect
3806 );
3807 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
3808 let control_handle = InputControlHandle { inner: this.inner.clone() };
3809 Ok(InputRequest::Watch {
3810 responder: InputWatchResponder {
3811 control_handle: std::mem::ManuallyDrop::new(control_handle),
3812 tx_id: header.tx_id,
3813 },
3814 })
3815 }
3816 0x2447379e693141ca => {
3817 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
3818 let mut req = fidl::new_empty!(
3819 InputSetRequest,
3820 fidl::encoding::DefaultFuchsiaResourceDialect
3821 );
3822 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<InputSetRequest>(&header, _body_bytes, handles, &mut req)?;
3823 let control_handle = InputControlHandle { inner: this.inner.clone() };
3824 Ok(InputRequest::Set {
3825 input_states: req.input_states,
3826
3827 responder: InputSetResponder {
3828 control_handle: std::mem::ManuallyDrop::new(control_handle),
3829 tx_id: header.tx_id,
3830 },
3831 })
3832 }
3833 _ => Err(fidl::Error::UnknownOrdinal {
3834 ordinal: header.ordinal,
3835 protocol_name: <InputMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
3836 }),
3837 }))
3838 },
3839 )
3840 }
3841}
3842
3843#[derive(Debug)]
3848pub enum InputRequest {
3849 Watch { responder: InputWatchResponder },
3866 Set { input_states: Vec<InputState>, responder: InputSetResponder },
3873}
3874
3875impl InputRequest {
3876 #[allow(irrefutable_let_patterns)]
3877 pub fn into_watch(self) -> Option<(InputWatchResponder)> {
3878 if let InputRequest::Watch { responder } = self {
3879 Some((responder))
3880 } else {
3881 None
3882 }
3883 }
3884
3885 #[allow(irrefutable_let_patterns)]
3886 pub fn into_set(self) -> Option<(Vec<InputState>, InputSetResponder)> {
3887 if let InputRequest::Set { input_states, responder } = self {
3888 Some((input_states, responder))
3889 } else {
3890 None
3891 }
3892 }
3893
3894 pub fn method_name(&self) -> &'static str {
3896 match *self {
3897 InputRequest::Watch { .. } => "watch",
3898 InputRequest::Set { .. } => "set",
3899 }
3900 }
3901}
3902
3903#[derive(Debug, Clone)]
3904pub struct InputControlHandle {
3905 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
3906}
3907
3908impl fidl::endpoints::ControlHandle for InputControlHandle {
3909 fn shutdown(&self) {
3910 self.inner.shutdown()
3911 }
3912 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
3913 self.inner.shutdown_with_epitaph(status)
3914 }
3915
3916 fn is_closed(&self) -> bool {
3917 self.inner.channel().is_closed()
3918 }
3919 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
3920 self.inner.channel().on_closed()
3921 }
3922
3923 #[cfg(target_os = "fuchsia")]
3924 fn signal_peer(
3925 &self,
3926 clear_mask: zx::Signals,
3927 set_mask: zx::Signals,
3928 ) -> Result<(), zx_status::Status> {
3929 use fidl::Peered;
3930 self.inner.channel().signal_peer(clear_mask, set_mask)
3931 }
3932}
3933
3934impl InputControlHandle {}
3935
3936#[must_use = "FIDL methods require a response to be sent"]
3937#[derive(Debug)]
3938pub struct InputWatchResponder {
3939 control_handle: std::mem::ManuallyDrop<InputControlHandle>,
3940 tx_id: u32,
3941}
3942
3943impl std::ops::Drop for InputWatchResponder {
3947 fn drop(&mut self) {
3948 self.control_handle.shutdown();
3949 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
3951 }
3952}
3953
3954impl fidl::endpoints::Responder for InputWatchResponder {
3955 type ControlHandle = InputControlHandle;
3956
3957 fn control_handle(&self) -> &InputControlHandle {
3958 &self.control_handle
3959 }
3960
3961 fn drop_without_shutdown(mut self) {
3962 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
3964 std::mem::forget(self);
3966 }
3967}
3968
3969impl InputWatchResponder {
3970 pub fn send(self, mut settings: &InputSettings) -> Result<(), fidl::Error> {
3974 let _result = self.send_raw(settings);
3975 if _result.is_err() {
3976 self.control_handle.shutdown();
3977 }
3978 self.drop_without_shutdown();
3979 _result
3980 }
3981
3982 pub fn send_no_shutdown_on_err(self, mut settings: &InputSettings) -> Result<(), fidl::Error> {
3984 let _result = self.send_raw(settings);
3985 self.drop_without_shutdown();
3986 _result
3987 }
3988
3989 fn send_raw(&self, mut settings: &InputSettings) -> Result<(), fidl::Error> {
3990 self.control_handle.inner.send::<InputWatchResponse>(
3991 (settings,),
3992 self.tx_id,
3993 0x1bc41a7e0edd19c9,
3994 fidl::encoding::DynamicFlags::empty(),
3995 )
3996 }
3997}
3998
3999#[must_use = "FIDL methods require a response to be sent"]
4000#[derive(Debug)]
4001pub struct InputSetResponder {
4002 control_handle: std::mem::ManuallyDrop<InputControlHandle>,
4003 tx_id: u32,
4004}
4005
4006impl std::ops::Drop for InputSetResponder {
4010 fn drop(&mut self) {
4011 self.control_handle.shutdown();
4012 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4014 }
4015}
4016
4017impl fidl::endpoints::Responder for InputSetResponder {
4018 type ControlHandle = InputControlHandle;
4019
4020 fn control_handle(&self) -> &InputControlHandle {
4021 &self.control_handle
4022 }
4023
4024 fn drop_without_shutdown(mut self) {
4025 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4027 std::mem::forget(self);
4029 }
4030}
4031
4032impl InputSetResponder {
4033 pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
4037 let _result = self.send_raw(result);
4038 if _result.is_err() {
4039 self.control_handle.shutdown();
4040 }
4041 self.drop_without_shutdown();
4042 _result
4043 }
4044
4045 pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
4047 let _result = self.send_raw(result);
4048 self.drop_without_shutdown();
4049 _result
4050 }
4051
4052 fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
4053 self.control_handle
4054 .inner
4055 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
4056 result,
4057 self.tx_id,
4058 0x2447379e693141ca,
4059 fidl::encoding::DynamicFlags::empty(),
4060 )
4061 }
4062}
4063
4064#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
4065pub struct IntlMarker;
4066
4067impl fidl::endpoints::ProtocolMarker for IntlMarker {
4068 type Proxy = IntlProxy;
4069 type RequestStream = IntlRequestStream;
4070 #[cfg(target_os = "fuchsia")]
4071 type SynchronousProxy = IntlSynchronousProxy;
4072
4073 const DEBUG_NAME: &'static str = "fuchsia.settings.Intl";
4074}
4075impl fidl::endpoints::DiscoverableProtocolMarker for IntlMarker {}
4076pub type IntlSetResult = Result<(), Error>;
4077
4078pub trait IntlProxyInterface: Send + Sync {
4079 type WatchResponseFut: std::future::Future<Output = Result<IntlSettings, fidl::Error>> + Send;
4080 fn r#watch(&self) -> Self::WatchResponseFut;
4081 type SetResponseFut: std::future::Future<Output = Result<IntlSetResult, fidl::Error>> + Send;
4082 fn r#set(&self, settings: &IntlSettings) -> Self::SetResponseFut;
4083}
4084#[derive(Debug)]
4085#[cfg(target_os = "fuchsia")]
4086pub struct IntlSynchronousProxy {
4087 client: fidl::client::sync::Client,
4088}
4089
4090#[cfg(target_os = "fuchsia")]
4091impl fidl::endpoints::SynchronousProxy for IntlSynchronousProxy {
4092 type Proxy = IntlProxy;
4093 type Protocol = IntlMarker;
4094
4095 fn from_channel(inner: fidl::Channel) -> Self {
4096 Self::new(inner)
4097 }
4098
4099 fn into_channel(self) -> fidl::Channel {
4100 self.client.into_channel()
4101 }
4102
4103 fn as_channel(&self) -> &fidl::Channel {
4104 self.client.as_channel()
4105 }
4106}
4107
4108#[cfg(target_os = "fuchsia")]
4109impl IntlSynchronousProxy {
4110 pub fn new(channel: fidl::Channel) -> Self {
4111 let protocol_name = <IntlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
4112 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
4113 }
4114
4115 pub fn into_channel(self) -> fidl::Channel {
4116 self.client.into_channel()
4117 }
4118
4119 pub fn wait_for_event(&self, deadline: zx::MonotonicInstant) -> Result<IntlEvent, fidl::Error> {
4122 IntlEvent::decode(self.client.wait_for_event(deadline)?)
4123 }
4124
4125 pub fn r#watch(&self, ___deadline: zx::MonotonicInstant) -> Result<IntlSettings, fidl::Error> {
4131 let _response = self.client.send_query::<fidl::encoding::EmptyPayload, IntlWatchResponse>(
4132 (),
4133 0x3c85d6b8a85ab6e3,
4134 fidl::encoding::DynamicFlags::empty(),
4135 ___deadline,
4136 )?;
4137 Ok(_response.settings)
4138 }
4139
4140 pub fn r#set(
4143 &self,
4144 mut settings: &IntlSettings,
4145 ___deadline: zx::MonotonicInstant,
4146 ) -> Result<IntlSetResult, fidl::Error> {
4147 let _response = self.client.send_query::<IntlSetRequest, fidl::encoding::ResultType<
4148 fidl::encoding::EmptyStruct,
4149 Error,
4150 >>(
4151 (settings,),
4152 0x273014eb4d880c5a,
4153 fidl::encoding::DynamicFlags::empty(),
4154 ___deadline,
4155 )?;
4156 Ok(_response.map(|x| x))
4157 }
4158}
4159
4160#[cfg(target_os = "fuchsia")]
4161impl From<IntlSynchronousProxy> for zx::Handle {
4162 fn from(value: IntlSynchronousProxy) -> Self {
4163 value.into_channel().into()
4164 }
4165}
4166
4167#[cfg(target_os = "fuchsia")]
4168impl From<fidl::Channel> for IntlSynchronousProxy {
4169 fn from(value: fidl::Channel) -> Self {
4170 Self::new(value)
4171 }
4172}
4173
4174#[derive(Debug, Clone)]
4175pub struct IntlProxy {
4176 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
4177}
4178
4179impl fidl::endpoints::Proxy for IntlProxy {
4180 type Protocol = IntlMarker;
4181
4182 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
4183 Self::new(inner)
4184 }
4185
4186 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
4187 self.client.into_channel().map_err(|client| Self { client })
4188 }
4189
4190 fn as_channel(&self) -> &::fidl::AsyncChannel {
4191 self.client.as_channel()
4192 }
4193}
4194
4195impl IntlProxy {
4196 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
4198 let protocol_name = <IntlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
4199 Self { client: fidl::client::Client::new(channel, protocol_name) }
4200 }
4201
4202 pub fn take_event_stream(&self) -> IntlEventStream {
4208 IntlEventStream { event_receiver: self.client.take_event_receiver() }
4209 }
4210
4211 pub fn r#watch(
4217 &self,
4218 ) -> fidl::client::QueryResponseFut<IntlSettings, fidl::encoding::DefaultFuchsiaResourceDialect>
4219 {
4220 IntlProxyInterface::r#watch(self)
4221 }
4222
4223 pub fn r#set(
4226 &self,
4227 mut settings: &IntlSettings,
4228 ) -> fidl::client::QueryResponseFut<IntlSetResult, fidl::encoding::DefaultFuchsiaResourceDialect>
4229 {
4230 IntlProxyInterface::r#set(self, settings)
4231 }
4232}
4233
4234impl IntlProxyInterface for IntlProxy {
4235 type WatchResponseFut =
4236 fidl::client::QueryResponseFut<IntlSettings, fidl::encoding::DefaultFuchsiaResourceDialect>;
4237 fn r#watch(&self) -> Self::WatchResponseFut {
4238 fn _decode(
4239 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
4240 ) -> Result<IntlSettings, fidl::Error> {
4241 let _response = fidl::client::decode_transaction_body::<
4242 IntlWatchResponse,
4243 fidl::encoding::DefaultFuchsiaResourceDialect,
4244 0x3c85d6b8a85ab6e3,
4245 >(_buf?)?;
4246 Ok(_response.settings)
4247 }
4248 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, IntlSettings>(
4249 (),
4250 0x3c85d6b8a85ab6e3,
4251 fidl::encoding::DynamicFlags::empty(),
4252 _decode,
4253 )
4254 }
4255
4256 type SetResponseFut = fidl::client::QueryResponseFut<
4257 IntlSetResult,
4258 fidl::encoding::DefaultFuchsiaResourceDialect,
4259 >;
4260 fn r#set(&self, mut settings: &IntlSettings) -> Self::SetResponseFut {
4261 fn _decode(
4262 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
4263 ) -> Result<IntlSetResult, fidl::Error> {
4264 let _response = fidl::client::decode_transaction_body::<
4265 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
4266 fidl::encoding::DefaultFuchsiaResourceDialect,
4267 0x273014eb4d880c5a,
4268 >(_buf?)?;
4269 Ok(_response.map(|x| x))
4270 }
4271 self.client.send_query_and_decode::<IntlSetRequest, IntlSetResult>(
4272 (settings,),
4273 0x273014eb4d880c5a,
4274 fidl::encoding::DynamicFlags::empty(),
4275 _decode,
4276 )
4277 }
4278}
4279
4280pub struct IntlEventStream {
4281 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
4282}
4283
4284impl std::marker::Unpin for IntlEventStream {}
4285
4286impl futures::stream::FusedStream for IntlEventStream {
4287 fn is_terminated(&self) -> bool {
4288 self.event_receiver.is_terminated()
4289 }
4290}
4291
4292impl futures::Stream for IntlEventStream {
4293 type Item = Result<IntlEvent, fidl::Error>;
4294
4295 fn poll_next(
4296 mut self: std::pin::Pin<&mut Self>,
4297 cx: &mut std::task::Context<'_>,
4298 ) -> std::task::Poll<Option<Self::Item>> {
4299 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
4300 &mut self.event_receiver,
4301 cx
4302 )?) {
4303 Some(buf) => std::task::Poll::Ready(Some(IntlEvent::decode(buf))),
4304 None => std::task::Poll::Ready(None),
4305 }
4306 }
4307}
4308
4309#[derive(Debug)]
4310pub enum IntlEvent {}
4311
4312impl IntlEvent {
4313 fn decode(
4315 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
4316 ) -> Result<IntlEvent, fidl::Error> {
4317 let (bytes, _handles) = buf.split_mut();
4318 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
4319 debug_assert_eq!(tx_header.tx_id, 0);
4320 match tx_header.ordinal {
4321 _ => Err(fidl::Error::UnknownOrdinal {
4322 ordinal: tx_header.ordinal,
4323 protocol_name: <IntlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
4324 }),
4325 }
4326 }
4327}
4328
4329pub struct IntlRequestStream {
4331 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
4332 is_terminated: bool,
4333}
4334
4335impl std::marker::Unpin for IntlRequestStream {}
4336
4337impl futures::stream::FusedStream for IntlRequestStream {
4338 fn is_terminated(&self) -> bool {
4339 self.is_terminated
4340 }
4341}
4342
4343impl fidl::endpoints::RequestStream for IntlRequestStream {
4344 type Protocol = IntlMarker;
4345 type ControlHandle = IntlControlHandle;
4346
4347 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
4348 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
4349 }
4350
4351 fn control_handle(&self) -> Self::ControlHandle {
4352 IntlControlHandle { inner: self.inner.clone() }
4353 }
4354
4355 fn into_inner(
4356 self,
4357 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
4358 {
4359 (self.inner, self.is_terminated)
4360 }
4361
4362 fn from_inner(
4363 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
4364 is_terminated: bool,
4365 ) -> Self {
4366 Self { inner, is_terminated }
4367 }
4368}
4369
4370impl futures::Stream for IntlRequestStream {
4371 type Item = Result<IntlRequest, fidl::Error>;
4372
4373 fn poll_next(
4374 mut self: std::pin::Pin<&mut Self>,
4375 cx: &mut std::task::Context<'_>,
4376 ) -> std::task::Poll<Option<Self::Item>> {
4377 let this = &mut *self;
4378 if this.inner.check_shutdown(cx) {
4379 this.is_terminated = true;
4380 return std::task::Poll::Ready(None);
4381 }
4382 if this.is_terminated {
4383 panic!("polled IntlRequestStream after completion");
4384 }
4385 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
4386 |bytes, handles| {
4387 match this.inner.channel().read_etc(cx, bytes, handles) {
4388 std::task::Poll::Ready(Ok(())) => {}
4389 std::task::Poll::Pending => return std::task::Poll::Pending,
4390 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
4391 this.is_terminated = true;
4392 return std::task::Poll::Ready(None);
4393 }
4394 std::task::Poll::Ready(Err(e)) => {
4395 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
4396 e.into(),
4397 ))))
4398 }
4399 }
4400
4401 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
4403
4404 std::task::Poll::Ready(Some(match header.ordinal {
4405 0x3c85d6b8a85ab6e3 => {
4406 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
4407 let mut req = fidl::new_empty!(
4408 fidl::encoding::EmptyPayload,
4409 fidl::encoding::DefaultFuchsiaResourceDialect
4410 );
4411 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
4412 let control_handle = IntlControlHandle { inner: this.inner.clone() };
4413 Ok(IntlRequest::Watch {
4414 responder: IntlWatchResponder {
4415 control_handle: std::mem::ManuallyDrop::new(control_handle),
4416 tx_id: header.tx_id,
4417 },
4418 })
4419 }
4420 0x273014eb4d880c5a => {
4421 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
4422 let mut req = fidl::new_empty!(
4423 IntlSetRequest,
4424 fidl::encoding::DefaultFuchsiaResourceDialect
4425 );
4426 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<IntlSetRequest>(&header, _body_bytes, handles, &mut req)?;
4427 let control_handle = IntlControlHandle { inner: this.inner.clone() };
4428 Ok(IntlRequest::Set {
4429 settings: req.settings,
4430
4431 responder: IntlSetResponder {
4432 control_handle: std::mem::ManuallyDrop::new(control_handle),
4433 tx_id: header.tx_id,
4434 },
4435 })
4436 }
4437 _ => Err(fidl::Error::UnknownOrdinal {
4438 ordinal: header.ordinal,
4439 protocol_name: <IntlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
4440 }),
4441 }))
4442 },
4443 )
4444 }
4445}
4446
4447#[derive(Debug)]
4454pub enum IntlRequest {
4455 Watch { responder: IntlWatchResponder },
4461 Set { settings: IntlSettings, responder: IntlSetResponder },
4464}
4465
4466impl IntlRequest {
4467 #[allow(irrefutable_let_patterns)]
4468 pub fn into_watch(self) -> Option<(IntlWatchResponder)> {
4469 if let IntlRequest::Watch { responder } = self {
4470 Some((responder))
4471 } else {
4472 None
4473 }
4474 }
4475
4476 #[allow(irrefutable_let_patterns)]
4477 pub fn into_set(self) -> Option<(IntlSettings, IntlSetResponder)> {
4478 if let IntlRequest::Set { settings, responder } = self {
4479 Some((settings, responder))
4480 } else {
4481 None
4482 }
4483 }
4484
4485 pub fn method_name(&self) -> &'static str {
4487 match *self {
4488 IntlRequest::Watch { .. } => "watch",
4489 IntlRequest::Set { .. } => "set",
4490 }
4491 }
4492}
4493
4494#[derive(Debug, Clone)]
4495pub struct IntlControlHandle {
4496 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
4497}
4498
4499impl fidl::endpoints::ControlHandle for IntlControlHandle {
4500 fn shutdown(&self) {
4501 self.inner.shutdown()
4502 }
4503 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
4504 self.inner.shutdown_with_epitaph(status)
4505 }
4506
4507 fn is_closed(&self) -> bool {
4508 self.inner.channel().is_closed()
4509 }
4510 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
4511 self.inner.channel().on_closed()
4512 }
4513
4514 #[cfg(target_os = "fuchsia")]
4515 fn signal_peer(
4516 &self,
4517 clear_mask: zx::Signals,
4518 set_mask: zx::Signals,
4519 ) -> Result<(), zx_status::Status> {
4520 use fidl::Peered;
4521 self.inner.channel().signal_peer(clear_mask, set_mask)
4522 }
4523}
4524
4525impl IntlControlHandle {}
4526
4527#[must_use = "FIDL methods require a response to be sent"]
4528#[derive(Debug)]
4529pub struct IntlWatchResponder {
4530 control_handle: std::mem::ManuallyDrop<IntlControlHandle>,
4531 tx_id: u32,
4532}
4533
4534impl std::ops::Drop for IntlWatchResponder {
4538 fn drop(&mut self) {
4539 self.control_handle.shutdown();
4540 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4542 }
4543}
4544
4545impl fidl::endpoints::Responder for IntlWatchResponder {
4546 type ControlHandle = IntlControlHandle;
4547
4548 fn control_handle(&self) -> &IntlControlHandle {
4549 &self.control_handle
4550 }
4551
4552 fn drop_without_shutdown(mut self) {
4553 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4555 std::mem::forget(self);
4557 }
4558}
4559
4560impl IntlWatchResponder {
4561 pub fn send(self, mut settings: &IntlSettings) -> Result<(), fidl::Error> {
4565 let _result = self.send_raw(settings);
4566 if _result.is_err() {
4567 self.control_handle.shutdown();
4568 }
4569 self.drop_without_shutdown();
4570 _result
4571 }
4572
4573 pub fn send_no_shutdown_on_err(self, mut settings: &IntlSettings) -> Result<(), fidl::Error> {
4575 let _result = self.send_raw(settings);
4576 self.drop_without_shutdown();
4577 _result
4578 }
4579
4580 fn send_raw(&self, mut settings: &IntlSettings) -> Result<(), fidl::Error> {
4581 self.control_handle.inner.send::<IntlWatchResponse>(
4582 (settings,),
4583 self.tx_id,
4584 0x3c85d6b8a85ab6e3,
4585 fidl::encoding::DynamicFlags::empty(),
4586 )
4587 }
4588}
4589
4590#[must_use = "FIDL methods require a response to be sent"]
4591#[derive(Debug)]
4592pub struct IntlSetResponder {
4593 control_handle: std::mem::ManuallyDrop<IntlControlHandle>,
4594 tx_id: u32,
4595}
4596
4597impl std::ops::Drop for IntlSetResponder {
4601 fn drop(&mut self) {
4602 self.control_handle.shutdown();
4603 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4605 }
4606}
4607
4608impl fidl::endpoints::Responder for IntlSetResponder {
4609 type ControlHandle = IntlControlHandle;
4610
4611 fn control_handle(&self) -> &IntlControlHandle {
4612 &self.control_handle
4613 }
4614
4615 fn drop_without_shutdown(mut self) {
4616 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
4618 std::mem::forget(self);
4620 }
4621}
4622
4623impl IntlSetResponder {
4624 pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
4628 let _result = self.send_raw(result);
4629 if _result.is_err() {
4630 self.control_handle.shutdown();
4631 }
4632 self.drop_without_shutdown();
4633 _result
4634 }
4635
4636 pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
4638 let _result = self.send_raw(result);
4639 self.drop_without_shutdown();
4640 _result
4641 }
4642
4643 fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
4644 self.control_handle
4645 .inner
4646 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
4647 result,
4648 self.tx_id,
4649 0x273014eb4d880c5a,
4650 fidl::encoding::DynamicFlags::empty(),
4651 )
4652 }
4653}
4654
4655#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
4656pub struct KeyboardMarker;
4657
4658impl fidl::endpoints::ProtocolMarker for KeyboardMarker {
4659 type Proxy = KeyboardProxy;
4660 type RequestStream = KeyboardRequestStream;
4661 #[cfg(target_os = "fuchsia")]
4662 type SynchronousProxy = KeyboardSynchronousProxy;
4663
4664 const DEBUG_NAME: &'static str = "fuchsia.settings.Keyboard";
4665}
4666impl fidl::endpoints::DiscoverableProtocolMarker for KeyboardMarker {}
4667
4668pub trait KeyboardProxyInterface: Send + Sync {
4669 type SetResponseFut: std::future::Future<Output = Result<KeyboardSetSetResult, fidl::Error>>
4670 + Send;
4671 fn r#set(&self, settings: &KeyboardSettings) -> Self::SetResponseFut;
4672 type WatchResponseFut: std::future::Future<Output = Result<KeyboardSettings, fidl::Error>>
4673 + Send;
4674 fn r#watch(&self) -> Self::WatchResponseFut;
4675}
4676#[derive(Debug)]
4677#[cfg(target_os = "fuchsia")]
4678pub struct KeyboardSynchronousProxy {
4679 client: fidl::client::sync::Client,
4680}
4681
4682#[cfg(target_os = "fuchsia")]
4683impl fidl::endpoints::SynchronousProxy for KeyboardSynchronousProxy {
4684 type Proxy = KeyboardProxy;
4685 type Protocol = KeyboardMarker;
4686
4687 fn from_channel(inner: fidl::Channel) -> Self {
4688 Self::new(inner)
4689 }
4690
4691 fn into_channel(self) -> fidl::Channel {
4692 self.client.into_channel()
4693 }
4694
4695 fn as_channel(&self) -> &fidl::Channel {
4696 self.client.as_channel()
4697 }
4698}
4699
4700#[cfg(target_os = "fuchsia")]
4701impl KeyboardSynchronousProxy {
4702 pub fn new(channel: fidl::Channel) -> Self {
4703 let protocol_name = <KeyboardMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
4704 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
4705 }
4706
4707 pub fn into_channel(self) -> fidl::Channel {
4708 self.client.into_channel()
4709 }
4710
4711 pub fn wait_for_event(
4714 &self,
4715 deadline: zx::MonotonicInstant,
4716 ) -> Result<KeyboardEvent, fidl::Error> {
4717 KeyboardEvent::decode(self.client.wait_for_event(deadline)?)
4718 }
4719
4720 pub fn r#set(
4723 &self,
4724 mut settings: &KeyboardSettings,
4725 ___deadline: zx::MonotonicInstant,
4726 ) -> Result<KeyboardSetSetResult, fidl::Error> {
4727 let _response = self.client.send_query::<
4728 KeyboardSetSetRequest,
4729 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
4730 >(
4731 (settings,),
4732 0x691f4493d263c843,
4733 fidl::encoding::DynamicFlags::empty(),
4734 ___deadline,
4735 )?;
4736 Ok(_response.map(|x| x))
4737 }
4738
4739 pub fn r#watch(
4744 &self,
4745 ___deadline: zx::MonotonicInstant,
4746 ) -> Result<KeyboardSettings, fidl::Error> {
4747 let _response =
4748 self.client.send_query::<fidl::encoding::EmptyPayload, KeyboardWatchWatchResponse>(
4749 (),
4750 0x357f6213b3a54527,
4751 fidl::encoding::DynamicFlags::empty(),
4752 ___deadline,
4753 )?;
4754 Ok(_response.settings)
4755 }
4756}
4757
4758#[cfg(target_os = "fuchsia")]
4759impl From<KeyboardSynchronousProxy> for zx::Handle {
4760 fn from(value: KeyboardSynchronousProxy) -> Self {
4761 value.into_channel().into()
4762 }
4763}
4764
4765#[cfg(target_os = "fuchsia")]
4766impl From<fidl::Channel> for KeyboardSynchronousProxy {
4767 fn from(value: fidl::Channel) -> Self {
4768 Self::new(value)
4769 }
4770}
4771
4772#[derive(Debug, Clone)]
4773pub struct KeyboardProxy {
4774 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
4775}
4776
4777impl fidl::endpoints::Proxy for KeyboardProxy {
4778 type Protocol = KeyboardMarker;
4779
4780 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
4781 Self::new(inner)
4782 }
4783
4784 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
4785 self.client.into_channel().map_err(|client| Self { client })
4786 }
4787
4788 fn as_channel(&self) -> &::fidl::AsyncChannel {
4789 self.client.as_channel()
4790 }
4791}
4792
4793impl KeyboardProxy {
4794 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
4796 let protocol_name = <KeyboardMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
4797 Self { client: fidl::client::Client::new(channel, protocol_name) }
4798 }
4799
4800 pub fn take_event_stream(&self) -> KeyboardEventStream {
4806 KeyboardEventStream { event_receiver: self.client.take_event_receiver() }
4807 }
4808
4809 pub fn r#set(
4812 &self,
4813 mut settings: &KeyboardSettings,
4814 ) -> fidl::client::QueryResponseFut<
4815 KeyboardSetSetResult,
4816 fidl::encoding::DefaultFuchsiaResourceDialect,
4817 > {
4818 KeyboardProxyInterface::r#set(self, settings)
4819 }
4820
4821 pub fn r#watch(
4826 &self,
4827 ) -> fidl::client::QueryResponseFut<
4828 KeyboardSettings,
4829 fidl::encoding::DefaultFuchsiaResourceDialect,
4830 > {
4831 KeyboardProxyInterface::r#watch(self)
4832 }
4833}
4834
4835impl KeyboardProxyInterface for KeyboardProxy {
4836 type SetResponseFut = fidl::client::QueryResponseFut<
4837 KeyboardSetSetResult,
4838 fidl::encoding::DefaultFuchsiaResourceDialect,
4839 >;
4840 fn r#set(&self, mut settings: &KeyboardSettings) -> Self::SetResponseFut {
4841 fn _decode(
4842 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
4843 ) -> Result<KeyboardSetSetResult, fidl::Error> {
4844 let _response = fidl::client::decode_transaction_body::<
4845 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
4846 fidl::encoding::DefaultFuchsiaResourceDialect,
4847 0x691f4493d263c843,
4848 >(_buf?)?;
4849 Ok(_response.map(|x| x))
4850 }
4851 self.client.send_query_and_decode::<KeyboardSetSetRequest, KeyboardSetSetResult>(
4852 (settings,),
4853 0x691f4493d263c843,
4854 fidl::encoding::DynamicFlags::empty(),
4855 _decode,
4856 )
4857 }
4858
4859 type WatchResponseFut = fidl::client::QueryResponseFut<
4860 KeyboardSettings,
4861 fidl::encoding::DefaultFuchsiaResourceDialect,
4862 >;
4863 fn r#watch(&self) -> Self::WatchResponseFut {
4864 fn _decode(
4865 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
4866 ) -> Result<KeyboardSettings, fidl::Error> {
4867 let _response = fidl::client::decode_transaction_body::<
4868 KeyboardWatchWatchResponse,
4869 fidl::encoding::DefaultFuchsiaResourceDialect,
4870 0x357f6213b3a54527,
4871 >(_buf?)?;
4872 Ok(_response.settings)
4873 }
4874 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, KeyboardSettings>(
4875 (),
4876 0x357f6213b3a54527,
4877 fidl::encoding::DynamicFlags::empty(),
4878 _decode,
4879 )
4880 }
4881}
4882
4883pub struct KeyboardEventStream {
4884 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
4885}
4886
4887impl std::marker::Unpin for KeyboardEventStream {}
4888
4889impl futures::stream::FusedStream for KeyboardEventStream {
4890 fn is_terminated(&self) -> bool {
4891 self.event_receiver.is_terminated()
4892 }
4893}
4894
4895impl futures::Stream for KeyboardEventStream {
4896 type Item = Result<KeyboardEvent, fidl::Error>;
4897
4898 fn poll_next(
4899 mut self: std::pin::Pin<&mut Self>,
4900 cx: &mut std::task::Context<'_>,
4901 ) -> std::task::Poll<Option<Self::Item>> {
4902 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
4903 &mut self.event_receiver,
4904 cx
4905 )?) {
4906 Some(buf) => std::task::Poll::Ready(Some(KeyboardEvent::decode(buf))),
4907 None => std::task::Poll::Ready(None),
4908 }
4909 }
4910}
4911
4912#[derive(Debug)]
4913pub enum KeyboardEvent {}
4914
4915impl KeyboardEvent {
4916 fn decode(
4918 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
4919 ) -> Result<KeyboardEvent, fidl::Error> {
4920 let (bytes, _handles) = buf.split_mut();
4921 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
4922 debug_assert_eq!(tx_header.tx_id, 0);
4923 match tx_header.ordinal {
4924 _ => Err(fidl::Error::UnknownOrdinal {
4925 ordinal: tx_header.ordinal,
4926 protocol_name: <KeyboardMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
4927 }),
4928 }
4929 }
4930}
4931
4932pub struct KeyboardRequestStream {
4934 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
4935 is_terminated: bool,
4936}
4937
4938impl std::marker::Unpin for KeyboardRequestStream {}
4939
4940impl futures::stream::FusedStream for KeyboardRequestStream {
4941 fn is_terminated(&self) -> bool {
4942 self.is_terminated
4943 }
4944}
4945
4946impl fidl::endpoints::RequestStream for KeyboardRequestStream {
4947 type Protocol = KeyboardMarker;
4948 type ControlHandle = KeyboardControlHandle;
4949
4950 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
4951 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
4952 }
4953
4954 fn control_handle(&self) -> Self::ControlHandle {
4955 KeyboardControlHandle { inner: self.inner.clone() }
4956 }
4957
4958 fn into_inner(
4959 self,
4960 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
4961 {
4962 (self.inner, self.is_terminated)
4963 }
4964
4965 fn from_inner(
4966 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
4967 is_terminated: bool,
4968 ) -> Self {
4969 Self { inner, is_terminated }
4970 }
4971}
4972
4973impl futures::Stream for KeyboardRequestStream {
4974 type Item = Result<KeyboardRequest, fidl::Error>;
4975
4976 fn poll_next(
4977 mut self: std::pin::Pin<&mut Self>,
4978 cx: &mut std::task::Context<'_>,
4979 ) -> std::task::Poll<Option<Self::Item>> {
4980 let this = &mut *self;
4981 if this.inner.check_shutdown(cx) {
4982 this.is_terminated = true;
4983 return std::task::Poll::Ready(None);
4984 }
4985 if this.is_terminated {
4986 panic!("polled KeyboardRequestStream after completion");
4987 }
4988 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
4989 |bytes, handles| {
4990 match this.inner.channel().read_etc(cx, bytes, handles) {
4991 std::task::Poll::Ready(Ok(())) => {}
4992 std::task::Poll::Pending => return std::task::Poll::Pending,
4993 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
4994 this.is_terminated = true;
4995 return std::task::Poll::Ready(None);
4996 }
4997 std::task::Poll::Ready(Err(e)) => {
4998 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
4999 e.into(),
5000 ))))
5001 }
5002 }
5003
5004 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
5006
5007 std::task::Poll::Ready(Some(match header.ordinal {
5008 0x691f4493d263c843 => {
5009 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
5010 let mut req = fidl::new_empty!(
5011 KeyboardSetSetRequest,
5012 fidl::encoding::DefaultFuchsiaResourceDialect
5013 );
5014 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<KeyboardSetSetRequest>(&header, _body_bytes, handles, &mut req)?;
5015 let control_handle = KeyboardControlHandle { inner: this.inner.clone() };
5016 Ok(KeyboardRequest::Set {
5017 settings: req.settings,
5018
5019 responder: KeyboardSetResponder {
5020 control_handle: std::mem::ManuallyDrop::new(control_handle),
5021 tx_id: header.tx_id,
5022 },
5023 })
5024 }
5025 0x357f6213b3a54527 => {
5026 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
5027 let mut req = fidl::new_empty!(
5028 fidl::encoding::EmptyPayload,
5029 fidl::encoding::DefaultFuchsiaResourceDialect
5030 );
5031 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
5032 let control_handle = KeyboardControlHandle { inner: this.inner.clone() };
5033 Ok(KeyboardRequest::Watch {
5034 responder: KeyboardWatchResponder {
5035 control_handle: std::mem::ManuallyDrop::new(control_handle),
5036 tx_id: header.tx_id,
5037 },
5038 })
5039 }
5040 _ => Err(fidl::Error::UnknownOrdinal {
5041 ordinal: header.ordinal,
5042 protocol_name:
5043 <KeyboardMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
5044 }),
5045 }))
5046 },
5047 )
5048 }
5049}
5050
5051#[derive(Debug)]
5053pub enum KeyboardRequest {
5054 Set { settings: KeyboardSettings, responder: KeyboardSetResponder },
5057 Watch { responder: KeyboardWatchResponder },
5062}
5063
5064impl KeyboardRequest {
5065 #[allow(irrefutable_let_patterns)]
5066 pub fn into_set(self) -> Option<(KeyboardSettings, KeyboardSetResponder)> {
5067 if let KeyboardRequest::Set { settings, responder } = self {
5068 Some((settings, responder))
5069 } else {
5070 None
5071 }
5072 }
5073
5074 #[allow(irrefutable_let_patterns)]
5075 pub fn into_watch(self) -> Option<(KeyboardWatchResponder)> {
5076 if let KeyboardRequest::Watch { responder } = self {
5077 Some((responder))
5078 } else {
5079 None
5080 }
5081 }
5082
5083 pub fn method_name(&self) -> &'static str {
5085 match *self {
5086 KeyboardRequest::Set { .. } => "set",
5087 KeyboardRequest::Watch { .. } => "watch",
5088 }
5089 }
5090}
5091
5092#[derive(Debug, Clone)]
5093pub struct KeyboardControlHandle {
5094 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
5095}
5096
5097impl fidl::endpoints::ControlHandle for KeyboardControlHandle {
5098 fn shutdown(&self) {
5099 self.inner.shutdown()
5100 }
5101 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
5102 self.inner.shutdown_with_epitaph(status)
5103 }
5104
5105 fn is_closed(&self) -> bool {
5106 self.inner.channel().is_closed()
5107 }
5108 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
5109 self.inner.channel().on_closed()
5110 }
5111
5112 #[cfg(target_os = "fuchsia")]
5113 fn signal_peer(
5114 &self,
5115 clear_mask: zx::Signals,
5116 set_mask: zx::Signals,
5117 ) -> Result<(), zx_status::Status> {
5118 use fidl::Peered;
5119 self.inner.channel().signal_peer(clear_mask, set_mask)
5120 }
5121}
5122
5123impl KeyboardControlHandle {}
5124
5125#[must_use = "FIDL methods require a response to be sent"]
5126#[derive(Debug)]
5127pub struct KeyboardSetResponder {
5128 control_handle: std::mem::ManuallyDrop<KeyboardControlHandle>,
5129 tx_id: u32,
5130}
5131
5132impl std::ops::Drop for KeyboardSetResponder {
5136 fn drop(&mut self) {
5137 self.control_handle.shutdown();
5138 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5140 }
5141}
5142
5143impl fidl::endpoints::Responder for KeyboardSetResponder {
5144 type ControlHandle = KeyboardControlHandle;
5145
5146 fn control_handle(&self) -> &KeyboardControlHandle {
5147 &self.control_handle
5148 }
5149
5150 fn drop_without_shutdown(mut self) {
5151 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5153 std::mem::forget(self);
5155 }
5156}
5157
5158impl KeyboardSetResponder {
5159 pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
5163 let _result = self.send_raw(result);
5164 if _result.is_err() {
5165 self.control_handle.shutdown();
5166 }
5167 self.drop_without_shutdown();
5168 _result
5169 }
5170
5171 pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
5173 let _result = self.send_raw(result);
5174 self.drop_without_shutdown();
5175 _result
5176 }
5177
5178 fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
5179 self.control_handle
5180 .inner
5181 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
5182 result,
5183 self.tx_id,
5184 0x691f4493d263c843,
5185 fidl::encoding::DynamicFlags::empty(),
5186 )
5187 }
5188}
5189
5190#[must_use = "FIDL methods require a response to be sent"]
5191#[derive(Debug)]
5192pub struct KeyboardWatchResponder {
5193 control_handle: std::mem::ManuallyDrop<KeyboardControlHandle>,
5194 tx_id: u32,
5195}
5196
5197impl std::ops::Drop for KeyboardWatchResponder {
5201 fn drop(&mut self) {
5202 self.control_handle.shutdown();
5203 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5205 }
5206}
5207
5208impl fidl::endpoints::Responder for KeyboardWatchResponder {
5209 type ControlHandle = KeyboardControlHandle;
5210
5211 fn control_handle(&self) -> &KeyboardControlHandle {
5212 &self.control_handle
5213 }
5214
5215 fn drop_without_shutdown(mut self) {
5216 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5218 std::mem::forget(self);
5220 }
5221}
5222
5223impl KeyboardWatchResponder {
5224 pub fn send(self, mut settings: &KeyboardSettings) -> Result<(), fidl::Error> {
5228 let _result = self.send_raw(settings);
5229 if _result.is_err() {
5230 self.control_handle.shutdown();
5231 }
5232 self.drop_without_shutdown();
5233 _result
5234 }
5235
5236 pub fn send_no_shutdown_on_err(
5238 self,
5239 mut settings: &KeyboardSettings,
5240 ) -> Result<(), fidl::Error> {
5241 let _result = self.send_raw(settings);
5242 self.drop_without_shutdown();
5243 _result
5244 }
5245
5246 fn send_raw(&self, mut settings: &KeyboardSettings) -> Result<(), fidl::Error> {
5247 self.control_handle.inner.send::<KeyboardWatchWatchResponse>(
5248 (settings,),
5249 self.tx_id,
5250 0x357f6213b3a54527,
5251 fidl::encoding::DynamicFlags::empty(),
5252 )
5253 }
5254}
5255
5256#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
5257pub struct KeyboardSetMarker;
5258
5259impl fidl::endpoints::ProtocolMarker for KeyboardSetMarker {
5260 type Proxy = KeyboardSetProxy;
5261 type RequestStream = KeyboardSetRequestStream;
5262 #[cfg(target_os = "fuchsia")]
5263 type SynchronousProxy = KeyboardSetSynchronousProxy;
5264
5265 const DEBUG_NAME: &'static str = "(anonymous) KeyboardSet";
5266}
5267pub type KeyboardSetSetResult = Result<(), Error>;
5268
5269pub trait KeyboardSetProxyInterface: Send + Sync {
5270 type SetResponseFut: std::future::Future<Output = Result<KeyboardSetSetResult, fidl::Error>>
5271 + Send;
5272 fn r#set(&self, settings: &KeyboardSettings) -> Self::SetResponseFut;
5273}
5274#[derive(Debug)]
5275#[cfg(target_os = "fuchsia")]
5276pub struct KeyboardSetSynchronousProxy {
5277 client: fidl::client::sync::Client,
5278}
5279
5280#[cfg(target_os = "fuchsia")]
5281impl fidl::endpoints::SynchronousProxy for KeyboardSetSynchronousProxy {
5282 type Proxy = KeyboardSetProxy;
5283 type Protocol = KeyboardSetMarker;
5284
5285 fn from_channel(inner: fidl::Channel) -> Self {
5286 Self::new(inner)
5287 }
5288
5289 fn into_channel(self) -> fidl::Channel {
5290 self.client.into_channel()
5291 }
5292
5293 fn as_channel(&self) -> &fidl::Channel {
5294 self.client.as_channel()
5295 }
5296}
5297
5298#[cfg(target_os = "fuchsia")]
5299impl KeyboardSetSynchronousProxy {
5300 pub fn new(channel: fidl::Channel) -> Self {
5301 let protocol_name = <KeyboardSetMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
5302 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
5303 }
5304
5305 pub fn into_channel(self) -> fidl::Channel {
5306 self.client.into_channel()
5307 }
5308
5309 pub fn wait_for_event(
5312 &self,
5313 deadline: zx::MonotonicInstant,
5314 ) -> Result<KeyboardSetEvent, fidl::Error> {
5315 KeyboardSetEvent::decode(self.client.wait_for_event(deadline)?)
5316 }
5317
5318 pub fn r#set(
5321 &self,
5322 mut settings: &KeyboardSettings,
5323 ___deadline: zx::MonotonicInstant,
5324 ) -> Result<KeyboardSetSetResult, fidl::Error> {
5325 let _response = self.client.send_query::<
5326 KeyboardSetSetRequest,
5327 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
5328 >(
5329 (settings,),
5330 0x691f4493d263c843,
5331 fidl::encoding::DynamicFlags::empty(),
5332 ___deadline,
5333 )?;
5334 Ok(_response.map(|x| x))
5335 }
5336}
5337
5338#[cfg(target_os = "fuchsia")]
5339impl From<KeyboardSetSynchronousProxy> for zx::Handle {
5340 fn from(value: KeyboardSetSynchronousProxy) -> Self {
5341 value.into_channel().into()
5342 }
5343}
5344
5345#[cfg(target_os = "fuchsia")]
5346impl From<fidl::Channel> for KeyboardSetSynchronousProxy {
5347 fn from(value: fidl::Channel) -> Self {
5348 Self::new(value)
5349 }
5350}
5351
5352#[derive(Debug, Clone)]
5353pub struct KeyboardSetProxy {
5354 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
5355}
5356
5357impl fidl::endpoints::Proxy for KeyboardSetProxy {
5358 type Protocol = KeyboardSetMarker;
5359
5360 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
5361 Self::new(inner)
5362 }
5363
5364 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
5365 self.client.into_channel().map_err(|client| Self { client })
5366 }
5367
5368 fn as_channel(&self) -> &::fidl::AsyncChannel {
5369 self.client.as_channel()
5370 }
5371}
5372
5373impl KeyboardSetProxy {
5374 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
5376 let protocol_name = <KeyboardSetMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
5377 Self { client: fidl::client::Client::new(channel, protocol_name) }
5378 }
5379
5380 pub fn take_event_stream(&self) -> KeyboardSetEventStream {
5386 KeyboardSetEventStream { event_receiver: self.client.take_event_receiver() }
5387 }
5388
5389 pub fn r#set(
5392 &self,
5393 mut settings: &KeyboardSettings,
5394 ) -> fidl::client::QueryResponseFut<
5395 KeyboardSetSetResult,
5396 fidl::encoding::DefaultFuchsiaResourceDialect,
5397 > {
5398 KeyboardSetProxyInterface::r#set(self, settings)
5399 }
5400}
5401
5402impl KeyboardSetProxyInterface for KeyboardSetProxy {
5403 type SetResponseFut = fidl::client::QueryResponseFut<
5404 KeyboardSetSetResult,
5405 fidl::encoding::DefaultFuchsiaResourceDialect,
5406 >;
5407 fn r#set(&self, mut settings: &KeyboardSettings) -> Self::SetResponseFut {
5408 fn _decode(
5409 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
5410 ) -> Result<KeyboardSetSetResult, fidl::Error> {
5411 let _response = fidl::client::decode_transaction_body::<
5412 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
5413 fidl::encoding::DefaultFuchsiaResourceDialect,
5414 0x691f4493d263c843,
5415 >(_buf?)?;
5416 Ok(_response.map(|x| x))
5417 }
5418 self.client.send_query_and_decode::<KeyboardSetSetRequest, KeyboardSetSetResult>(
5419 (settings,),
5420 0x691f4493d263c843,
5421 fidl::encoding::DynamicFlags::empty(),
5422 _decode,
5423 )
5424 }
5425}
5426
5427pub struct KeyboardSetEventStream {
5428 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
5429}
5430
5431impl std::marker::Unpin for KeyboardSetEventStream {}
5432
5433impl futures::stream::FusedStream for KeyboardSetEventStream {
5434 fn is_terminated(&self) -> bool {
5435 self.event_receiver.is_terminated()
5436 }
5437}
5438
5439impl futures::Stream for KeyboardSetEventStream {
5440 type Item = Result<KeyboardSetEvent, fidl::Error>;
5441
5442 fn poll_next(
5443 mut self: std::pin::Pin<&mut Self>,
5444 cx: &mut std::task::Context<'_>,
5445 ) -> std::task::Poll<Option<Self::Item>> {
5446 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
5447 &mut self.event_receiver,
5448 cx
5449 )?) {
5450 Some(buf) => std::task::Poll::Ready(Some(KeyboardSetEvent::decode(buf))),
5451 None => std::task::Poll::Ready(None),
5452 }
5453 }
5454}
5455
5456#[derive(Debug)]
5457pub enum KeyboardSetEvent {}
5458
5459impl KeyboardSetEvent {
5460 fn decode(
5462 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
5463 ) -> Result<KeyboardSetEvent, fidl::Error> {
5464 let (bytes, _handles) = buf.split_mut();
5465 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
5466 debug_assert_eq!(tx_header.tx_id, 0);
5467 match tx_header.ordinal {
5468 _ => Err(fidl::Error::UnknownOrdinal {
5469 ordinal: tx_header.ordinal,
5470 protocol_name: <KeyboardSetMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
5471 }),
5472 }
5473 }
5474}
5475
5476pub struct KeyboardSetRequestStream {
5478 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
5479 is_terminated: bool,
5480}
5481
5482impl std::marker::Unpin for KeyboardSetRequestStream {}
5483
5484impl futures::stream::FusedStream for KeyboardSetRequestStream {
5485 fn is_terminated(&self) -> bool {
5486 self.is_terminated
5487 }
5488}
5489
5490impl fidl::endpoints::RequestStream for KeyboardSetRequestStream {
5491 type Protocol = KeyboardSetMarker;
5492 type ControlHandle = KeyboardSetControlHandle;
5493
5494 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
5495 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
5496 }
5497
5498 fn control_handle(&self) -> Self::ControlHandle {
5499 KeyboardSetControlHandle { inner: self.inner.clone() }
5500 }
5501
5502 fn into_inner(
5503 self,
5504 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
5505 {
5506 (self.inner, self.is_terminated)
5507 }
5508
5509 fn from_inner(
5510 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
5511 is_terminated: bool,
5512 ) -> Self {
5513 Self { inner, is_terminated }
5514 }
5515}
5516
5517impl futures::Stream for KeyboardSetRequestStream {
5518 type Item = Result<KeyboardSetRequest, fidl::Error>;
5519
5520 fn poll_next(
5521 mut self: std::pin::Pin<&mut Self>,
5522 cx: &mut std::task::Context<'_>,
5523 ) -> std::task::Poll<Option<Self::Item>> {
5524 let this = &mut *self;
5525 if this.inner.check_shutdown(cx) {
5526 this.is_terminated = true;
5527 return std::task::Poll::Ready(None);
5528 }
5529 if this.is_terminated {
5530 panic!("polled KeyboardSetRequestStream after completion");
5531 }
5532 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
5533 |bytes, handles| {
5534 match this.inner.channel().read_etc(cx, bytes, handles) {
5535 std::task::Poll::Ready(Ok(())) => {}
5536 std::task::Poll::Pending => return std::task::Poll::Pending,
5537 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
5538 this.is_terminated = true;
5539 return std::task::Poll::Ready(None);
5540 }
5541 std::task::Poll::Ready(Err(e)) => {
5542 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
5543 e.into(),
5544 ))))
5545 }
5546 }
5547
5548 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
5550
5551 std::task::Poll::Ready(Some(match header.ordinal {
5552 0x691f4493d263c843 => {
5553 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
5554 let mut req = fidl::new_empty!(
5555 KeyboardSetSetRequest,
5556 fidl::encoding::DefaultFuchsiaResourceDialect
5557 );
5558 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<KeyboardSetSetRequest>(&header, _body_bytes, handles, &mut req)?;
5559 let control_handle = KeyboardSetControlHandle { inner: this.inner.clone() };
5560 Ok(KeyboardSetRequest::Set {
5561 settings: req.settings,
5562
5563 responder: KeyboardSetSetResponder {
5564 control_handle: std::mem::ManuallyDrop::new(control_handle),
5565 tx_id: header.tx_id,
5566 },
5567 })
5568 }
5569 _ => Err(fidl::Error::UnknownOrdinal {
5570 ordinal: header.ordinal,
5571 protocol_name:
5572 <KeyboardSetMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
5573 }),
5574 }))
5575 },
5576 )
5577 }
5578}
5579
5580#[derive(Debug)]
5582pub enum KeyboardSetRequest {
5583 Set { settings: KeyboardSettings, responder: KeyboardSetSetResponder },
5586}
5587
5588impl KeyboardSetRequest {
5589 #[allow(irrefutable_let_patterns)]
5590 pub fn into_set(self) -> Option<(KeyboardSettings, KeyboardSetSetResponder)> {
5591 if let KeyboardSetRequest::Set { settings, responder } = self {
5592 Some((settings, responder))
5593 } else {
5594 None
5595 }
5596 }
5597
5598 pub fn method_name(&self) -> &'static str {
5600 match *self {
5601 KeyboardSetRequest::Set { .. } => "set",
5602 }
5603 }
5604}
5605
5606#[derive(Debug, Clone)]
5607pub struct KeyboardSetControlHandle {
5608 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
5609}
5610
5611impl fidl::endpoints::ControlHandle for KeyboardSetControlHandle {
5612 fn shutdown(&self) {
5613 self.inner.shutdown()
5614 }
5615 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
5616 self.inner.shutdown_with_epitaph(status)
5617 }
5618
5619 fn is_closed(&self) -> bool {
5620 self.inner.channel().is_closed()
5621 }
5622 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
5623 self.inner.channel().on_closed()
5624 }
5625
5626 #[cfg(target_os = "fuchsia")]
5627 fn signal_peer(
5628 &self,
5629 clear_mask: zx::Signals,
5630 set_mask: zx::Signals,
5631 ) -> Result<(), zx_status::Status> {
5632 use fidl::Peered;
5633 self.inner.channel().signal_peer(clear_mask, set_mask)
5634 }
5635}
5636
5637impl KeyboardSetControlHandle {}
5638
5639#[must_use = "FIDL methods require a response to be sent"]
5640#[derive(Debug)]
5641pub struct KeyboardSetSetResponder {
5642 control_handle: std::mem::ManuallyDrop<KeyboardSetControlHandle>,
5643 tx_id: u32,
5644}
5645
5646impl std::ops::Drop for KeyboardSetSetResponder {
5650 fn drop(&mut self) {
5651 self.control_handle.shutdown();
5652 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5654 }
5655}
5656
5657impl fidl::endpoints::Responder for KeyboardSetSetResponder {
5658 type ControlHandle = KeyboardSetControlHandle;
5659
5660 fn control_handle(&self) -> &KeyboardSetControlHandle {
5661 &self.control_handle
5662 }
5663
5664 fn drop_without_shutdown(mut self) {
5665 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
5667 std::mem::forget(self);
5669 }
5670}
5671
5672impl KeyboardSetSetResponder {
5673 pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
5677 let _result = self.send_raw(result);
5678 if _result.is_err() {
5679 self.control_handle.shutdown();
5680 }
5681 self.drop_without_shutdown();
5682 _result
5683 }
5684
5685 pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
5687 let _result = self.send_raw(result);
5688 self.drop_without_shutdown();
5689 _result
5690 }
5691
5692 fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
5693 self.control_handle
5694 .inner
5695 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
5696 result,
5697 self.tx_id,
5698 0x691f4493d263c843,
5699 fidl::encoding::DynamicFlags::empty(),
5700 )
5701 }
5702}
5703
5704#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
5705pub struct KeyboardWatchMarker;
5706
5707impl fidl::endpoints::ProtocolMarker for KeyboardWatchMarker {
5708 type Proxy = KeyboardWatchProxy;
5709 type RequestStream = KeyboardWatchRequestStream;
5710 #[cfg(target_os = "fuchsia")]
5711 type SynchronousProxy = KeyboardWatchSynchronousProxy;
5712
5713 const DEBUG_NAME: &'static str = "(anonymous) KeyboardWatch";
5714}
5715
5716pub trait KeyboardWatchProxyInterface: Send + Sync {
5717 type WatchResponseFut: std::future::Future<Output = Result<KeyboardSettings, fidl::Error>>
5718 + Send;
5719 fn r#watch(&self) -> Self::WatchResponseFut;
5720}
5721#[derive(Debug)]
5722#[cfg(target_os = "fuchsia")]
5723pub struct KeyboardWatchSynchronousProxy {
5724 client: fidl::client::sync::Client,
5725}
5726
5727#[cfg(target_os = "fuchsia")]
5728impl fidl::endpoints::SynchronousProxy for KeyboardWatchSynchronousProxy {
5729 type Proxy = KeyboardWatchProxy;
5730 type Protocol = KeyboardWatchMarker;
5731
5732 fn from_channel(inner: fidl::Channel) -> Self {
5733 Self::new(inner)
5734 }
5735
5736 fn into_channel(self) -> fidl::Channel {
5737 self.client.into_channel()
5738 }
5739
5740 fn as_channel(&self) -> &fidl::Channel {
5741 self.client.as_channel()
5742 }
5743}
5744
5745#[cfg(target_os = "fuchsia")]
5746impl KeyboardWatchSynchronousProxy {
5747 pub fn new(channel: fidl::Channel) -> Self {
5748 let protocol_name = <KeyboardWatchMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
5749 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
5750 }
5751
5752 pub fn into_channel(self) -> fidl::Channel {
5753 self.client.into_channel()
5754 }
5755
5756 pub fn wait_for_event(
5759 &self,
5760 deadline: zx::MonotonicInstant,
5761 ) -> Result<KeyboardWatchEvent, fidl::Error> {
5762 KeyboardWatchEvent::decode(self.client.wait_for_event(deadline)?)
5763 }
5764
5765 pub fn r#watch(
5770 &self,
5771 ___deadline: zx::MonotonicInstant,
5772 ) -> Result<KeyboardSettings, fidl::Error> {
5773 let _response =
5774 self.client.send_query::<fidl::encoding::EmptyPayload, KeyboardWatchWatchResponse>(
5775 (),
5776 0x357f6213b3a54527,
5777 fidl::encoding::DynamicFlags::empty(),
5778 ___deadline,
5779 )?;
5780 Ok(_response.settings)
5781 }
5782}
5783
5784#[cfg(target_os = "fuchsia")]
5785impl From<KeyboardWatchSynchronousProxy> for zx::Handle {
5786 fn from(value: KeyboardWatchSynchronousProxy) -> Self {
5787 value.into_channel().into()
5788 }
5789}
5790
5791#[cfg(target_os = "fuchsia")]
5792impl From<fidl::Channel> for KeyboardWatchSynchronousProxy {
5793 fn from(value: fidl::Channel) -> Self {
5794 Self::new(value)
5795 }
5796}
5797
5798#[derive(Debug, Clone)]
5799pub struct KeyboardWatchProxy {
5800 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
5801}
5802
5803impl fidl::endpoints::Proxy for KeyboardWatchProxy {
5804 type Protocol = KeyboardWatchMarker;
5805
5806 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
5807 Self::new(inner)
5808 }
5809
5810 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
5811 self.client.into_channel().map_err(|client| Self { client })
5812 }
5813
5814 fn as_channel(&self) -> &::fidl::AsyncChannel {
5815 self.client.as_channel()
5816 }
5817}
5818
5819impl KeyboardWatchProxy {
5820 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
5822 let protocol_name = <KeyboardWatchMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
5823 Self { client: fidl::client::Client::new(channel, protocol_name) }
5824 }
5825
5826 pub fn take_event_stream(&self) -> KeyboardWatchEventStream {
5832 KeyboardWatchEventStream { event_receiver: self.client.take_event_receiver() }
5833 }
5834
5835 pub fn r#watch(
5840 &self,
5841 ) -> fidl::client::QueryResponseFut<
5842 KeyboardSettings,
5843 fidl::encoding::DefaultFuchsiaResourceDialect,
5844 > {
5845 KeyboardWatchProxyInterface::r#watch(self)
5846 }
5847}
5848
5849impl KeyboardWatchProxyInterface for KeyboardWatchProxy {
5850 type WatchResponseFut = fidl::client::QueryResponseFut<
5851 KeyboardSettings,
5852 fidl::encoding::DefaultFuchsiaResourceDialect,
5853 >;
5854 fn r#watch(&self) -> Self::WatchResponseFut {
5855 fn _decode(
5856 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
5857 ) -> Result<KeyboardSettings, fidl::Error> {
5858 let _response = fidl::client::decode_transaction_body::<
5859 KeyboardWatchWatchResponse,
5860 fidl::encoding::DefaultFuchsiaResourceDialect,
5861 0x357f6213b3a54527,
5862 >(_buf?)?;
5863 Ok(_response.settings)
5864 }
5865 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, KeyboardSettings>(
5866 (),
5867 0x357f6213b3a54527,
5868 fidl::encoding::DynamicFlags::empty(),
5869 _decode,
5870 )
5871 }
5872}
5873
5874pub struct KeyboardWatchEventStream {
5875 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
5876}
5877
5878impl std::marker::Unpin for KeyboardWatchEventStream {}
5879
5880impl futures::stream::FusedStream for KeyboardWatchEventStream {
5881 fn is_terminated(&self) -> bool {
5882 self.event_receiver.is_terminated()
5883 }
5884}
5885
5886impl futures::Stream for KeyboardWatchEventStream {
5887 type Item = Result<KeyboardWatchEvent, fidl::Error>;
5888
5889 fn poll_next(
5890 mut self: std::pin::Pin<&mut Self>,
5891 cx: &mut std::task::Context<'_>,
5892 ) -> std::task::Poll<Option<Self::Item>> {
5893 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
5894 &mut self.event_receiver,
5895 cx
5896 )?) {
5897 Some(buf) => std::task::Poll::Ready(Some(KeyboardWatchEvent::decode(buf))),
5898 None => std::task::Poll::Ready(None),
5899 }
5900 }
5901}
5902
5903#[derive(Debug)]
5904pub enum KeyboardWatchEvent {}
5905
5906impl KeyboardWatchEvent {
5907 fn decode(
5909 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
5910 ) -> Result<KeyboardWatchEvent, fidl::Error> {
5911 let (bytes, _handles) = buf.split_mut();
5912 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
5913 debug_assert_eq!(tx_header.tx_id, 0);
5914 match tx_header.ordinal {
5915 _ => Err(fidl::Error::UnknownOrdinal {
5916 ordinal: tx_header.ordinal,
5917 protocol_name: <KeyboardWatchMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
5918 }),
5919 }
5920 }
5921}
5922
5923pub struct KeyboardWatchRequestStream {
5925 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
5926 is_terminated: bool,
5927}
5928
5929impl std::marker::Unpin for KeyboardWatchRequestStream {}
5930
5931impl futures::stream::FusedStream for KeyboardWatchRequestStream {
5932 fn is_terminated(&self) -> bool {
5933 self.is_terminated
5934 }
5935}
5936
5937impl fidl::endpoints::RequestStream for KeyboardWatchRequestStream {
5938 type Protocol = KeyboardWatchMarker;
5939 type ControlHandle = KeyboardWatchControlHandle;
5940
5941 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
5942 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
5943 }
5944
5945 fn control_handle(&self) -> Self::ControlHandle {
5946 KeyboardWatchControlHandle { inner: self.inner.clone() }
5947 }
5948
5949 fn into_inner(
5950 self,
5951 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
5952 {
5953 (self.inner, self.is_terminated)
5954 }
5955
5956 fn from_inner(
5957 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
5958 is_terminated: bool,
5959 ) -> Self {
5960 Self { inner, is_terminated }
5961 }
5962}
5963
5964impl futures::Stream for KeyboardWatchRequestStream {
5965 type Item = Result<KeyboardWatchRequest, fidl::Error>;
5966
5967 fn poll_next(
5968 mut self: std::pin::Pin<&mut Self>,
5969 cx: &mut std::task::Context<'_>,
5970 ) -> std::task::Poll<Option<Self::Item>> {
5971 let this = &mut *self;
5972 if this.inner.check_shutdown(cx) {
5973 this.is_terminated = true;
5974 return std::task::Poll::Ready(None);
5975 }
5976 if this.is_terminated {
5977 panic!("polled KeyboardWatchRequestStream after completion");
5978 }
5979 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
5980 |bytes, handles| {
5981 match this.inner.channel().read_etc(cx, bytes, handles) {
5982 std::task::Poll::Ready(Ok(())) => {}
5983 std::task::Poll::Pending => return std::task::Poll::Pending,
5984 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
5985 this.is_terminated = true;
5986 return std::task::Poll::Ready(None);
5987 }
5988 std::task::Poll::Ready(Err(e)) => {
5989 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
5990 e.into(),
5991 ))))
5992 }
5993 }
5994
5995 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
5997
5998 std::task::Poll::Ready(Some(match header.ordinal {
5999 0x357f6213b3a54527 => {
6000 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
6001 let mut req = fidl::new_empty!(
6002 fidl::encoding::EmptyPayload,
6003 fidl::encoding::DefaultFuchsiaResourceDialect
6004 );
6005 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
6006 let control_handle =
6007 KeyboardWatchControlHandle { inner: this.inner.clone() };
6008 Ok(KeyboardWatchRequest::Watch {
6009 responder: KeyboardWatchWatchResponder {
6010 control_handle: std::mem::ManuallyDrop::new(control_handle),
6011 tx_id: header.tx_id,
6012 },
6013 })
6014 }
6015 _ => Err(fidl::Error::UnknownOrdinal {
6016 ordinal: header.ordinal,
6017 protocol_name:
6018 <KeyboardWatchMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
6019 }),
6020 }))
6021 },
6022 )
6023 }
6024}
6025
6026#[derive(Debug)]
6028pub enum KeyboardWatchRequest {
6029 Watch { responder: KeyboardWatchWatchResponder },
6034}
6035
6036impl KeyboardWatchRequest {
6037 #[allow(irrefutable_let_patterns)]
6038 pub fn into_watch(self) -> Option<(KeyboardWatchWatchResponder)> {
6039 if let KeyboardWatchRequest::Watch { responder } = self {
6040 Some((responder))
6041 } else {
6042 None
6043 }
6044 }
6045
6046 pub fn method_name(&self) -> &'static str {
6048 match *self {
6049 KeyboardWatchRequest::Watch { .. } => "watch",
6050 }
6051 }
6052}
6053
6054#[derive(Debug, Clone)]
6055pub struct KeyboardWatchControlHandle {
6056 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
6057}
6058
6059impl fidl::endpoints::ControlHandle for KeyboardWatchControlHandle {
6060 fn shutdown(&self) {
6061 self.inner.shutdown()
6062 }
6063 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
6064 self.inner.shutdown_with_epitaph(status)
6065 }
6066
6067 fn is_closed(&self) -> bool {
6068 self.inner.channel().is_closed()
6069 }
6070 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
6071 self.inner.channel().on_closed()
6072 }
6073
6074 #[cfg(target_os = "fuchsia")]
6075 fn signal_peer(
6076 &self,
6077 clear_mask: zx::Signals,
6078 set_mask: zx::Signals,
6079 ) -> Result<(), zx_status::Status> {
6080 use fidl::Peered;
6081 self.inner.channel().signal_peer(clear_mask, set_mask)
6082 }
6083}
6084
6085impl KeyboardWatchControlHandle {}
6086
6087#[must_use = "FIDL methods require a response to be sent"]
6088#[derive(Debug)]
6089pub struct KeyboardWatchWatchResponder {
6090 control_handle: std::mem::ManuallyDrop<KeyboardWatchControlHandle>,
6091 tx_id: u32,
6092}
6093
6094impl std::ops::Drop for KeyboardWatchWatchResponder {
6098 fn drop(&mut self) {
6099 self.control_handle.shutdown();
6100 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6102 }
6103}
6104
6105impl fidl::endpoints::Responder for KeyboardWatchWatchResponder {
6106 type ControlHandle = KeyboardWatchControlHandle;
6107
6108 fn control_handle(&self) -> &KeyboardWatchControlHandle {
6109 &self.control_handle
6110 }
6111
6112 fn drop_without_shutdown(mut self) {
6113 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6115 std::mem::forget(self);
6117 }
6118}
6119
6120impl KeyboardWatchWatchResponder {
6121 pub fn send(self, mut settings: &KeyboardSettings) -> Result<(), fidl::Error> {
6125 let _result = self.send_raw(settings);
6126 if _result.is_err() {
6127 self.control_handle.shutdown();
6128 }
6129 self.drop_without_shutdown();
6130 _result
6131 }
6132
6133 pub fn send_no_shutdown_on_err(
6135 self,
6136 mut settings: &KeyboardSettings,
6137 ) -> Result<(), fidl::Error> {
6138 let _result = self.send_raw(settings);
6139 self.drop_without_shutdown();
6140 _result
6141 }
6142
6143 fn send_raw(&self, mut settings: &KeyboardSettings) -> Result<(), fidl::Error> {
6144 self.control_handle.inner.send::<KeyboardWatchWatchResponse>(
6145 (settings,),
6146 self.tx_id,
6147 0x357f6213b3a54527,
6148 fidl::encoding::DynamicFlags::empty(),
6149 )
6150 }
6151}
6152
6153#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
6154pub struct LightMarker;
6155
6156impl fidl::endpoints::ProtocolMarker for LightMarker {
6157 type Proxy = LightProxy;
6158 type RequestStream = LightRequestStream;
6159 #[cfg(target_os = "fuchsia")]
6160 type SynchronousProxy = LightSynchronousProxy;
6161
6162 const DEBUG_NAME: &'static str = "fuchsia.settings.Light";
6163}
6164impl fidl::endpoints::DiscoverableProtocolMarker for LightMarker {}
6165pub type LightSetLightGroupValuesResult = Result<(), LightError>;
6166
6167pub trait LightProxyInterface: Send + Sync {
6168 type WatchLightGroupsResponseFut: std::future::Future<Output = Result<Vec<LightGroup>, fidl::Error>>
6169 + Send;
6170 fn r#watch_light_groups(&self) -> Self::WatchLightGroupsResponseFut;
6171 type WatchLightGroupResponseFut: std::future::Future<Output = Result<LightGroup, fidl::Error>>
6172 + Send;
6173 fn r#watch_light_group(&self, name: &str) -> Self::WatchLightGroupResponseFut;
6174 type SetLightGroupValuesResponseFut: std::future::Future<Output = Result<LightSetLightGroupValuesResult, fidl::Error>>
6175 + Send;
6176 fn r#set_light_group_values(
6177 &self,
6178 name: &str,
6179 state: &[LightState],
6180 ) -> Self::SetLightGroupValuesResponseFut;
6181}
6182#[derive(Debug)]
6183#[cfg(target_os = "fuchsia")]
6184pub struct LightSynchronousProxy {
6185 client: fidl::client::sync::Client,
6186}
6187
6188#[cfg(target_os = "fuchsia")]
6189impl fidl::endpoints::SynchronousProxy for LightSynchronousProxy {
6190 type Proxy = LightProxy;
6191 type Protocol = LightMarker;
6192
6193 fn from_channel(inner: fidl::Channel) -> Self {
6194 Self::new(inner)
6195 }
6196
6197 fn into_channel(self) -> fidl::Channel {
6198 self.client.into_channel()
6199 }
6200
6201 fn as_channel(&self) -> &fidl::Channel {
6202 self.client.as_channel()
6203 }
6204}
6205
6206#[cfg(target_os = "fuchsia")]
6207impl LightSynchronousProxy {
6208 pub fn new(channel: fidl::Channel) -> Self {
6209 let protocol_name = <LightMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
6210 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
6211 }
6212
6213 pub fn into_channel(self) -> fidl::Channel {
6214 self.client.into_channel()
6215 }
6216
6217 pub fn wait_for_event(
6220 &self,
6221 deadline: zx::MonotonicInstant,
6222 ) -> Result<LightEvent, fidl::Error> {
6223 LightEvent::decode(self.client.wait_for_event(deadline)?)
6224 }
6225
6226 pub fn r#watch_light_groups(
6233 &self,
6234 ___deadline: zx::MonotonicInstant,
6235 ) -> Result<Vec<LightGroup>, fidl::Error> {
6236 let _response =
6237 self.client.send_query::<fidl::encoding::EmptyPayload, LightWatchLightGroupsResponse>(
6238 (),
6239 0x3f506de229db5930,
6240 fidl::encoding::DynamicFlags::empty(),
6241 ___deadline,
6242 )?;
6243 Ok(_response.groups)
6244 }
6245
6246 pub fn r#watch_light_group(
6254 &self,
6255 mut name: &str,
6256 ___deadline: zx::MonotonicInstant,
6257 ) -> Result<LightGroup, fidl::Error> {
6258 let _response =
6259 self.client.send_query::<LightWatchLightGroupRequest, LightWatchLightGroupResponse>(
6260 (name,),
6261 0x3ef0331c388d56a3,
6262 fidl::encoding::DynamicFlags::empty(),
6263 ___deadline,
6264 )?;
6265 Ok(_response.group)
6266 }
6267
6268 pub fn r#set_light_group_values(
6277 &self,
6278 mut name: &str,
6279 mut state: &[LightState],
6280 ___deadline: zx::MonotonicInstant,
6281 ) -> Result<LightSetLightGroupValuesResult, fidl::Error> {
6282 let _response = self.client.send_query::<
6283 LightSetLightGroupValuesRequest,
6284 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, LightError>,
6285 >(
6286 (name, state,),
6287 0x15d9b62431fdf8d5,
6288 fidl::encoding::DynamicFlags::empty(),
6289 ___deadline,
6290 )?;
6291 Ok(_response.map(|x| x))
6292 }
6293}
6294
6295#[cfg(target_os = "fuchsia")]
6296impl From<LightSynchronousProxy> for zx::Handle {
6297 fn from(value: LightSynchronousProxy) -> Self {
6298 value.into_channel().into()
6299 }
6300}
6301
6302#[cfg(target_os = "fuchsia")]
6303impl From<fidl::Channel> for LightSynchronousProxy {
6304 fn from(value: fidl::Channel) -> Self {
6305 Self::new(value)
6306 }
6307}
6308
6309#[derive(Debug, Clone)]
6310pub struct LightProxy {
6311 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
6312}
6313
6314impl fidl::endpoints::Proxy for LightProxy {
6315 type Protocol = LightMarker;
6316
6317 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
6318 Self::new(inner)
6319 }
6320
6321 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
6322 self.client.into_channel().map_err(|client| Self { client })
6323 }
6324
6325 fn as_channel(&self) -> &::fidl::AsyncChannel {
6326 self.client.as_channel()
6327 }
6328}
6329
6330impl LightProxy {
6331 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
6333 let protocol_name = <LightMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
6334 Self { client: fidl::client::Client::new(channel, protocol_name) }
6335 }
6336
6337 pub fn take_event_stream(&self) -> LightEventStream {
6343 LightEventStream { event_receiver: self.client.take_event_receiver() }
6344 }
6345
6346 pub fn r#watch_light_groups(
6353 &self,
6354 ) -> fidl::client::QueryResponseFut<
6355 Vec<LightGroup>,
6356 fidl::encoding::DefaultFuchsiaResourceDialect,
6357 > {
6358 LightProxyInterface::r#watch_light_groups(self)
6359 }
6360
6361 pub fn r#watch_light_group(
6369 &self,
6370 mut name: &str,
6371 ) -> fidl::client::QueryResponseFut<LightGroup, fidl::encoding::DefaultFuchsiaResourceDialect>
6372 {
6373 LightProxyInterface::r#watch_light_group(self, name)
6374 }
6375
6376 pub fn r#set_light_group_values(
6385 &self,
6386 mut name: &str,
6387 mut state: &[LightState],
6388 ) -> fidl::client::QueryResponseFut<
6389 LightSetLightGroupValuesResult,
6390 fidl::encoding::DefaultFuchsiaResourceDialect,
6391 > {
6392 LightProxyInterface::r#set_light_group_values(self, name, state)
6393 }
6394}
6395
6396impl LightProxyInterface for LightProxy {
6397 type WatchLightGroupsResponseFut = fidl::client::QueryResponseFut<
6398 Vec<LightGroup>,
6399 fidl::encoding::DefaultFuchsiaResourceDialect,
6400 >;
6401 fn r#watch_light_groups(&self) -> Self::WatchLightGroupsResponseFut {
6402 fn _decode(
6403 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
6404 ) -> Result<Vec<LightGroup>, fidl::Error> {
6405 let _response = fidl::client::decode_transaction_body::<
6406 LightWatchLightGroupsResponse,
6407 fidl::encoding::DefaultFuchsiaResourceDialect,
6408 0x3f506de229db5930,
6409 >(_buf?)?;
6410 Ok(_response.groups)
6411 }
6412 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, Vec<LightGroup>>(
6413 (),
6414 0x3f506de229db5930,
6415 fidl::encoding::DynamicFlags::empty(),
6416 _decode,
6417 )
6418 }
6419
6420 type WatchLightGroupResponseFut =
6421 fidl::client::QueryResponseFut<LightGroup, fidl::encoding::DefaultFuchsiaResourceDialect>;
6422 fn r#watch_light_group(&self, mut name: &str) -> Self::WatchLightGroupResponseFut {
6423 fn _decode(
6424 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
6425 ) -> Result<LightGroup, fidl::Error> {
6426 let _response = fidl::client::decode_transaction_body::<
6427 LightWatchLightGroupResponse,
6428 fidl::encoding::DefaultFuchsiaResourceDialect,
6429 0x3ef0331c388d56a3,
6430 >(_buf?)?;
6431 Ok(_response.group)
6432 }
6433 self.client.send_query_and_decode::<LightWatchLightGroupRequest, LightGroup>(
6434 (name,),
6435 0x3ef0331c388d56a3,
6436 fidl::encoding::DynamicFlags::empty(),
6437 _decode,
6438 )
6439 }
6440
6441 type SetLightGroupValuesResponseFut = fidl::client::QueryResponseFut<
6442 LightSetLightGroupValuesResult,
6443 fidl::encoding::DefaultFuchsiaResourceDialect,
6444 >;
6445 fn r#set_light_group_values(
6446 &self,
6447 mut name: &str,
6448 mut state: &[LightState],
6449 ) -> Self::SetLightGroupValuesResponseFut {
6450 fn _decode(
6451 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
6452 ) -> Result<LightSetLightGroupValuesResult, fidl::Error> {
6453 let _response = fidl::client::decode_transaction_body::<
6454 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, LightError>,
6455 fidl::encoding::DefaultFuchsiaResourceDialect,
6456 0x15d9b62431fdf8d5,
6457 >(_buf?)?;
6458 Ok(_response.map(|x| x))
6459 }
6460 self.client.send_query_and_decode::<
6461 LightSetLightGroupValuesRequest,
6462 LightSetLightGroupValuesResult,
6463 >(
6464 (name, state,),
6465 0x15d9b62431fdf8d5,
6466 fidl::encoding::DynamicFlags::empty(),
6467 _decode,
6468 )
6469 }
6470}
6471
6472pub struct LightEventStream {
6473 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
6474}
6475
6476impl std::marker::Unpin for LightEventStream {}
6477
6478impl futures::stream::FusedStream for LightEventStream {
6479 fn is_terminated(&self) -> bool {
6480 self.event_receiver.is_terminated()
6481 }
6482}
6483
6484impl futures::Stream for LightEventStream {
6485 type Item = Result<LightEvent, fidl::Error>;
6486
6487 fn poll_next(
6488 mut self: std::pin::Pin<&mut Self>,
6489 cx: &mut std::task::Context<'_>,
6490 ) -> std::task::Poll<Option<Self::Item>> {
6491 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
6492 &mut self.event_receiver,
6493 cx
6494 )?) {
6495 Some(buf) => std::task::Poll::Ready(Some(LightEvent::decode(buf))),
6496 None => std::task::Poll::Ready(None),
6497 }
6498 }
6499}
6500
6501#[derive(Debug)]
6502pub enum LightEvent {}
6503
6504impl LightEvent {
6505 fn decode(
6507 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
6508 ) -> Result<LightEvent, fidl::Error> {
6509 let (bytes, _handles) = buf.split_mut();
6510 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
6511 debug_assert_eq!(tx_header.tx_id, 0);
6512 match tx_header.ordinal {
6513 _ => Err(fidl::Error::UnknownOrdinal {
6514 ordinal: tx_header.ordinal,
6515 protocol_name: <LightMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
6516 }),
6517 }
6518 }
6519}
6520
6521pub struct LightRequestStream {
6523 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
6524 is_terminated: bool,
6525}
6526
6527impl std::marker::Unpin for LightRequestStream {}
6528
6529impl futures::stream::FusedStream for LightRequestStream {
6530 fn is_terminated(&self) -> bool {
6531 self.is_terminated
6532 }
6533}
6534
6535impl fidl::endpoints::RequestStream for LightRequestStream {
6536 type Protocol = LightMarker;
6537 type ControlHandle = LightControlHandle;
6538
6539 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
6540 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
6541 }
6542
6543 fn control_handle(&self) -> Self::ControlHandle {
6544 LightControlHandle { inner: self.inner.clone() }
6545 }
6546
6547 fn into_inner(
6548 self,
6549 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
6550 {
6551 (self.inner, self.is_terminated)
6552 }
6553
6554 fn from_inner(
6555 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
6556 is_terminated: bool,
6557 ) -> Self {
6558 Self { inner, is_terminated }
6559 }
6560}
6561
6562impl futures::Stream for LightRequestStream {
6563 type Item = Result<LightRequest, fidl::Error>;
6564
6565 fn poll_next(
6566 mut self: std::pin::Pin<&mut Self>,
6567 cx: &mut std::task::Context<'_>,
6568 ) -> std::task::Poll<Option<Self::Item>> {
6569 let this = &mut *self;
6570 if this.inner.check_shutdown(cx) {
6571 this.is_terminated = true;
6572 return std::task::Poll::Ready(None);
6573 }
6574 if this.is_terminated {
6575 panic!("polled LightRequestStream after completion");
6576 }
6577 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
6578 |bytes, handles| {
6579 match this.inner.channel().read_etc(cx, bytes, handles) {
6580 std::task::Poll::Ready(Ok(())) => {}
6581 std::task::Poll::Pending => return std::task::Poll::Pending,
6582 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
6583 this.is_terminated = true;
6584 return std::task::Poll::Ready(None);
6585 }
6586 std::task::Poll::Ready(Err(e)) => {
6587 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
6588 e.into(),
6589 ))))
6590 }
6591 }
6592
6593 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
6595
6596 std::task::Poll::Ready(Some(match header.ordinal {
6597 0x3f506de229db5930 => {
6598 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
6599 let mut req = fidl::new_empty!(
6600 fidl::encoding::EmptyPayload,
6601 fidl::encoding::DefaultFuchsiaResourceDialect
6602 );
6603 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
6604 let control_handle = LightControlHandle { inner: this.inner.clone() };
6605 Ok(LightRequest::WatchLightGroups {
6606 responder: LightWatchLightGroupsResponder {
6607 control_handle: std::mem::ManuallyDrop::new(control_handle),
6608 tx_id: header.tx_id,
6609 },
6610 })
6611 }
6612 0x3ef0331c388d56a3 => {
6613 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
6614 let mut req = fidl::new_empty!(
6615 LightWatchLightGroupRequest,
6616 fidl::encoding::DefaultFuchsiaResourceDialect
6617 );
6618 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<LightWatchLightGroupRequest>(&header, _body_bytes, handles, &mut req)?;
6619 let control_handle = LightControlHandle { inner: this.inner.clone() };
6620 Ok(LightRequest::WatchLightGroup {
6621 name: req.name,
6622
6623 responder: LightWatchLightGroupResponder {
6624 control_handle: std::mem::ManuallyDrop::new(control_handle),
6625 tx_id: header.tx_id,
6626 },
6627 })
6628 }
6629 0x15d9b62431fdf8d5 => {
6630 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
6631 let mut req = fidl::new_empty!(
6632 LightSetLightGroupValuesRequest,
6633 fidl::encoding::DefaultFuchsiaResourceDialect
6634 );
6635 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<LightSetLightGroupValuesRequest>(&header, _body_bytes, handles, &mut req)?;
6636 let control_handle = LightControlHandle { inner: this.inner.clone() };
6637 Ok(LightRequest::SetLightGroupValues {
6638 name: req.name,
6639 state: req.state,
6640
6641 responder: LightSetLightGroupValuesResponder {
6642 control_handle: std::mem::ManuallyDrop::new(control_handle),
6643 tx_id: header.tx_id,
6644 },
6645 })
6646 }
6647 _ => Err(fidl::Error::UnknownOrdinal {
6648 ordinal: header.ordinal,
6649 protocol_name: <LightMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
6650 }),
6651 }))
6652 },
6653 )
6654 }
6655}
6656
6657#[derive(Debug)]
6658pub enum LightRequest {
6659 WatchLightGroups { responder: LightWatchLightGroupsResponder },
6666 WatchLightGroup { name: String, responder: LightWatchLightGroupResponder },
6674 SetLightGroupValues {
6683 name: String,
6684 state: Vec<LightState>,
6685 responder: LightSetLightGroupValuesResponder,
6686 },
6687}
6688
6689impl LightRequest {
6690 #[allow(irrefutable_let_patterns)]
6691 pub fn into_watch_light_groups(self) -> Option<(LightWatchLightGroupsResponder)> {
6692 if let LightRequest::WatchLightGroups { responder } = self {
6693 Some((responder))
6694 } else {
6695 None
6696 }
6697 }
6698
6699 #[allow(irrefutable_let_patterns)]
6700 pub fn into_watch_light_group(self) -> Option<(String, LightWatchLightGroupResponder)> {
6701 if let LightRequest::WatchLightGroup { name, responder } = self {
6702 Some((name, responder))
6703 } else {
6704 None
6705 }
6706 }
6707
6708 #[allow(irrefutable_let_patterns)]
6709 pub fn into_set_light_group_values(
6710 self,
6711 ) -> Option<(String, Vec<LightState>, LightSetLightGroupValuesResponder)> {
6712 if let LightRequest::SetLightGroupValues { name, state, responder } = self {
6713 Some((name, state, responder))
6714 } else {
6715 None
6716 }
6717 }
6718
6719 pub fn method_name(&self) -> &'static str {
6721 match *self {
6722 LightRequest::WatchLightGroups { .. } => "watch_light_groups",
6723 LightRequest::WatchLightGroup { .. } => "watch_light_group",
6724 LightRequest::SetLightGroupValues { .. } => "set_light_group_values",
6725 }
6726 }
6727}
6728
6729#[derive(Debug, Clone)]
6730pub struct LightControlHandle {
6731 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
6732}
6733
6734impl fidl::endpoints::ControlHandle for LightControlHandle {
6735 fn shutdown(&self) {
6736 self.inner.shutdown()
6737 }
6738 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
6739 self.inner.shutdown_with_epitaph(status)
6740 }
6741
6742 fn is_closed(&self) -> bool {
6743 self.inner.channel().is_closed()
6744 }
6745 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
6746 self.inner.channel().on_closed()
6747 }
6748
6749 #[cfg(target_os = "fuchsia")]
6750 fn signal_peer(
6751 &self,
6752 clear_mask: zx::Signals,
6753 set_mask: zx::Signals,
6754 ) -> Result<(), zx_status::Status> {
6755 use fidl::Peered;
6756 self.inner.channel().signal_peer(clear_mask, set_mask)
6757 }
6758}
6759
6760impl LightControlHandle {}
6761
6762#[must_use = "FIDL methods require a response to be sent"]
6763#[derive(Debug)]
6764pub struct LightWatchLightGroupsResponder {
6765 control_handle: std::mem::ManuallyDrop<LightControlHandle>,
6766 tx_id: u32,
6767}
6768
6769impl std::ops::Drop for LightWatchLightGroupsResponder {
6773 fn drop(&mut self) {
6774 self.control_handle.shutdown();
6775 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6777 }
6778}
6779
6780impl fidl::endpoints::Responder for LightWatchLightGroupsResponder {
6781 type ControlHandle = LightControlHandle;
6782
6783 fn control_handle(&self) -> &LightControlHandle {
6784 &self.control_handle
6785 }
6786
6787 fn drop_without_shutdown(mut self) {
6788 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6790 std::mem::forget(self);
6792 }
6793}
6794
6795impl LightWatchLightGroupsResponder {
6796 pub fn send(self, mut groups: &[LightGroup]) -> Result<(), fidl::Error> {
6800 let _result = self.send_raw(groups);
6801 if _result.is_err() {
6802 self.control_handle.shutdown();
6803 }
6804 self.drop_without_shutdown();
6805 _result
6806 }
6807
6808 pub fn send_no_shutdown_on_err(self, mut groups: &[LightGroup]) -> Result<(), fidl::Error> {
6810 let _result = self.send_raw(groups);
6811 self.drop_without_shutdown();
6812 _result
6813 }
6814
6815 fn send_raw(&self, mut groups: &[LightGroup]) -> Result<(), fidl::Error> {
6816 self.control_handle.inner.send::<LightWatchLightGroupsResponse>(
6817 (groups,),
6818 self.tx_id,
6819 0x3f506de229db5930,
6820 fidl::encoding::DynamicFlags::empty(),
6821 )
6822 }
6823}
6824
6825#[must_use = "FIDL methods require a response to be sent"]
6826#[derive(Debug)]
6827pub struct LightWatchLightGroupResponder {
6828 control_handle: std::mem::ManuallyDrop<LightControlHandle>,
6829 tx_id: u32,
6830}
6831
6832impl std::ops::Drop for LightWatchLightGroupResponder {
6836 fn drop(&mut self) {
6837 self.control_handle.shutdown();
6838 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6840 }
6841}
6842
6843impl fidl::endpoints::Responder for LightWatchLightGroupResponder {
6844 type ControlHandle = LightControlHandle;
6845
6846 fn control_handle(&self) -> &LightControlHandle {
6847 &self.control_handle
6848 }
6849
6850 fn drop_without_shutdown(mut self) {
6851 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6853 std::mem::forget(self);
6855 }
6856}
6857
6858impl LightWatchLightGroupResponder {
6859 pub fn send(self, mut group: &LightGroup) -> Result<(), fidl::Error> {
6863 let _result = self.send_raw(group);
6864 if _result.is_err() {
6865 self.control_handle.shutdown();
6866 }
6867 self.drop_without_shutdown();
6868 _result
6869 }
6870
6871 pub fn send_no_shutdown_on_err(self, mut group: &LightGroup) -> Result<(), fidl::Error> {
6873 let _result = self.send_raw(group);
6874 self.drop_without_shutdown();
6875 _result
6876 }
6877
6878 fn send_raw(&self, mut group: &LightGroup) -> Result<(), fidl::Error> {
6879 self.control_handle.inner.send::<LightWatchLightGroupResponse>(
6880 (group,),
6881 self.tx_id,
6882 0x3ef0331c388d56a3,
6883 fidl::encoding::DynamicFlags::empty(),
6884 )
6885 }
6886}
6887
6888#[must_use = "FIDL methods require a response to be sent"]
6889#[derive(Debug)]
6890pub struct LightSetLightGroupValuesResponder {
6891 control_handle: std::mem::ManuallyDrop<LightControlHandle>,
6892 tx_id: u32,
6893}
6894
6895impl std::ops::Drop for LightSetLightGroupValuesResponder {
6899 fn drop(&mut self) {
6900 self.control_handle.shutdown();
6901 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6903 }
6904}
6905
6906impl fidl::endpoints::Responder for LightSetLightGroupValuesResponder {
6907 type ControlHandle = LightControlHandle;
6908
6909 fn control_handle(&self) -> &LightControlHandle {
6910 &self.control_handle
6911 }
6912
6913 fn drop_without_shutdown(mut self) {
6914 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
6916 std::mem::forget(self);
6918 }
6919}
6920
6921impl LightSetLightGroupValuesResponder {
6922 pub fn send(self, mut result: Result<(), LightError>) -> Result<(), fidl::Error> {
6926 let _result = self.send_raw(result);
6927 if _result.is_err() {
6928 self.control_handle.shutdown();
6929 }
6930 self.drop_without_shutdown();
6931 _result
6932 }
6933
6934 pub fn send_no_shutdown_on_err(
6936 self,
6937 mut result: Result<(), LightError>,
6938 ) -> Result<(), fidl::Error> {
6939 let _result = self.send_raw(result);
6940 self.drop_without_shutdown();
6941 _result
6942 }
6943
6944 fn send_raw(&self, mut result: Result<(), LightError>) -> Result<(), fidl::Error> {
6945 self.control_handle
6946 .inner
6947 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, LightError>>(
6948 result,
6949 self.tx_id,
6950 0x15d9b62431fdf8d5,
6951 fidl::encoding::DynamicFlags::empty(),
6952 )
6953 }
6954}
6955
6956#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
6957pub struct NightModeMarker;
6958
6959impl fidl::endpoints::ProtocolMarker for NightModeMarker {
6960 type Proxy = NightModeProxy;
6961 type RequestStream = NightModeRequestStream;
6962 #[cfg(target_os = "fuchsia")]
6963 type SynchronousProxy = NightModeSynchronousProxy;
6964
6965 const DEBUG_NAME: &'static str = "fuchsia.settings.NightMode";
6966}
6967impl fidl::endpoints::DiscoverableProtocolMarker for NightModeMarker {}
6968pub type NightModeSetResult = Result<(), Error>;
6969
6970pub trait NightModeProxyInterface: Send + Sync {
6971 type WatchResponseFut: std::future::Future<Output = Result<NightModeSettings, fidl::Error>>
6972 + Send;
6973 fn r#watch(&self) -> Self::WatchResponseFut;
6974 type SetResponseFut: std::future::Future<Output = Result<NightModeSetResult, fidl::Error>>
6975 + Send;
6976 fn r#set(&self, settings: &NightModeSettings) -> Self::SetResponseFut;
6977}
6978#[derive(Debug)]
6979#[cfg(target_os = "fuchsia")]
6980pub struct NightModeSynchronousProxy {
6981 client: fidl::client::sync::Client,
6982}
6983
6984#[cfg(target_os = "fuchsia")]
6985impl fidl::endpoints::SynchronousProxy for NightModeSynchronousProxy {
6986 type Proxy = NightModeProxy;
6987 type Protocol = NightModeMarker;
6988
6989 fn from_channel(inner: fidl::Channel) -> Self {
6990 Self::new(inner)
6991 }
6992
6993 fn into_channel(self) -> fidl::Channel {
6994 self.client.into_channel()
6995 }
6996
6997 fn as_channel(&self) -> &fidl::Channel {
6998 self.client.as_channel()
6999 }
7000}
7001
7002#[cfg(target_os = "fuchsia")]
7003impl NightModeSynchronousProxy {
7004 pub fn new(channel: fidl::Channel) -> Self {
7005 let protocol_name = <NightModeMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
7006 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
7007 }
7008
7009 pub fn into_channel(self) -> fidl::Channel {
7010 self.client.into_channel()
7011 }
7012
7013 pub fn wait_for_event(
7016 &self,
7017 deadline: zx::MonotonicInstant,
7018 ) -> Result<NightModeEvent, fidl::Error> {
7019 NightModeEvent::decode(self.client.wait_for_event(deadline)?)
7020 }
7021
7022 pub fn r#watch(
7028 &self,
7029 ___deadline: zx::MonotonicInstant,
7030 ) -> Result<NightModeSettings, fidl::Error> {
7031 let _response =
7032 self.client.send_query::<fidl::encoding::EmptyPayload, NightModeWatchResponse>(
7033 (),
7034 0x7e1509bf8c7582f6,
7035 fidl::encoding::DynamicFlags::empty(),
7036 ___deadline,
7037 )?;
7038 Ok(_response.settings)
7039 }
7040
7041 pub fn r#set(
7044 &self,
7045 mut settings: &NightModeSettings,
7046 ___deadline: zx::MonotonicInstant,
7047 ) -> Result<NightModeSetResult, fidl::Error> {
7048 let _response = self.client.send_query::<NightModeSetRequest, fidl::encoding::ResultType<
7049 fidl::encoding::EmptyStruct,
7050 Error,
7051 >>(
7052 (settings,),
7053 0x28c3d78ab05b55cd,
7054 fidl::encoding::DynamicFlags::empty(),
7055 ___deadline,
7056 )?;
7057 Ok(_response.map(|x| x))
7058 }
7059}
7060
7061#[cfg(target_os = "fuchsia")]
7062impl From<NightModeSynchronousProxy> for zx::Handle {
7063 fn from(value: NightModeSynchronousProxy) -> Self {
7064 value.into_channel().into()
7065 }
7066}
7067
7068#[cfg(target_os = "fuchsia")]
7069impl From<fidl::Channel> for NightModeSynchronousProxy {
7070 fn from(value: fidl::Channel) -> Self {
7071 Self::new(value)
7072 }
7073}
7074
7075#[derive(Debug, Clone)]
7076pub struct NightModeProxy {
7077 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
7078}
7079
7080impl fidl::endpoints::Proxy for NightModeProxy {
7081 type Protocol = NightModeMarker;
7082
7083 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
7084 Self::new(inner)
7085 }
7086
7087 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
7088 self.client.into_channel().map_err(|client| Self { client })
7089 }
7090
7091 fn as_channel(&self) -> &::fidl::AsyncChannel {
7092 self.client.as_channel()
7093 }
7094}
7095
7096impl NightModeProxy {
7097 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
7099 let protocol_name = <NightModeMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
7100 Self { client: fidl::client::Client::new(channel, protocol_name) }
7101 }
7102
7103 pub fn take_event_stream(&self) -> NightModeEventStream {
7109 NightModeEventStream { event_receiver: self.client.take_event_receiver() }
7110 }
7111
7112 pub fn r#watch(
7118 &self,
7119 ) -> fidl::client::QueryResponseFut<
7120 NightModeSettings,
7121 fidl::encoding::DefaultFuchsiaResourceDialect,
7122 > {
7123 NightModeProxyInterface::r#watch(self)
7124 }
7125
7126 pub fn r#set(
7129 &self,
7130 mut settings: &NightModeSettings,
7131 ) -> fidl::client::QueryResponseFut<
7132 NightModeSetResult,
7133 fidl::encoding::DefaultFuchsiaResourceDialect,
7134 > {
7135 NightModeProxyInterface::r#set(self, settings)
7136 }
7137}
7138
7139impl NightModeProxyInterface for NightModeProxy {
7140 type WatchResponseFut = fidl::client::QueryResponseFut<
7141 NightModeSettings,
7142 fidl::encoding::DefaultFuchsiaResourceDialect,
7143 >;
7144 fn r#watch(&self) -> Self::WatchResponseFut {
7145 fn _decode(
7146 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
7147 ) -> Result<NightModeSettings, fidl::Error> {
7148 let _response = fidl::client::decode_transaction_body::<
7149 NightModeWatchResponse,
7150 fidl::encoding::DefaultFuchsiaResourceDialect,
7151 0x7e1509bf8c7582f6,
7152 >(_buf?)?;
7153 Ok(_response.settings)
7154 }
7155 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, NightModeSettings>(
7156 (),
7157 0x7e1509bf8c7582f6,
7158 fidl::encoding::DynamicFlags::empty(),
7159 _decode,
7160 )
7161 }
7162
7163 type SetResponseFut = fidl::client::QueryResponseFut<
7164 NightModeSetResult,
7165 fidl::encoding::DefaultFuchsiaResourceDialect,
7166 >;
7167 fn r#set(&self, mut settings: &NightModeSettings) -> Self::SetResponseFut {
7168 fn _decode(
7169 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
7170 ) -> Result<NightModeSetResult, fidl::Error> {
7171 let _response = fidl::client::decode_transaction_body::<
7172 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
7173 fidl::encoding::DefaultFuchsiaResourceDialect,
7174 0x28c3d78ab05b55cd,
7175 >(_buf?)?;
7176 Ok(_response.map(|x| x))
7177 }
7178 self.client.send_query_and_decode::<NightModeSetRequest, NightModeSetResult>(
7179 (settings,),
7180 0x28c3d78ab05b55cd,
7181 fidl::encoding::DynamicFlags::empty(),
7182 _decode,
7183 )
7184 }
7185}
7186
7187pub struct NightModeEventStream {
7188 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
7189}
7190
7191impl std::marker::Unpin for NightModeEventStream {}
7192
7193impl futures::stream::FusedStream for NightModeEventStream {
7194 fn is_terminated(&self) -> bool {
7195 self.event_receiver.is_terminated()
7196 }
7197}
7198
7199impl futures::Stream for NightModeEventStream {
7200 type Item = Result<NightModeEvent, fidl::Error>;
7201
7202 fn poll_next(
7203 mut self: std::pin::Pin<&mut Self>,
7204 cx: &mut std::task::Context<'_>,
7205 ) -> std::task::Poll<Option<Self::Item>> {
7206 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
7207 &mut self.event_receiver,
7208 cx
7209 )?) {
7210 Some(buf) => std::task::Poll::Ready(Some(NightModeEvent::decode(buf))),
7211 None => std::task::Poll::Ready(None),
7212 }
7213 }
7214}
7215
7216#[derive(Debug)]
7217pub enum NightModeEvent {}
7218
7219impl NightModeEvent {
7220 fn decode(
7222 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
7223 ) -> Result<NightModeEvent, fidl::Error> {
7224 let (bytes, _handles) = buf.split_mut();
7225 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
7226 debug_assert_eq!(tx_header.tx_id, 0);
7227 match tx_header.ordinal {
7228 _ => Err(fidl::Error::UnknownOrdinal {
7229 ordinal: tx_header.ordinal,
7230 protocol_name: <NightModeMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
7231 }),
7232 }
7233 }
7234}
7235
7236pub struct NightModeRequestStream {
7238 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
7239 is_terminated: bool,
7240}
7241
7242impl std::marker::Unpin for NightModeRequestStream {}
7243
7244impl futures::stream::FusedStream for NightModeRequestStream {
7245 fn is_terminated(&self) -> bool {
7246 self.is_terminated
7247 }
7248}
7249
7250impl fidl::endpoints::RequestStream for NightModeRequestStream {
7251 type Protocol = NightModeMarker;
7252 type ControlHandle = NightModeControlHandle;
7253
7254 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
7255 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
7256 }
7257
7258 fn control_handle(&self) -> Self::ControlHandle {
7259 NightModeControlHandle { inner: self.inner.clone() }
7260 }
7261
7262 fn into_inner(
7263 self,
7264 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
7265 {
7266 (self.inner, self.is_terminated)
7267 }
7268
7269 fn from_inner(
7270 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
7271 is_terminated: bool,
7272 ) -> Self {
7273 Self { inner, is_terminated }
7274 }
7275}
7276
7277impl futures::Stream for NightModeRequestStream {
7278 type Item = Result<NightModeRequest, fidl::Error>;
7279
7280 fn poll_next(
7281 mut self: std::pin::Pin<&mut Self>,
7282 cx: &mut std::task::Context<'_>,
7283 ) -> std::task::Poll<Option<Self::Item>> {
7284 let this = &mut *self;
7285 if this.inner.check_shutdown(cx) {
7286 this.is_terminated = true;
7287 return std::task::Poll::Ready(None);
7288 }
7289 if this.is_terminated {
7290 panic!("polled NightModeRequestStream after completion");
7291 }
7292 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
7293 |bytes, handles| {
7294 match this.inner.channel().read_etc(cx, bytes, handles) {
7295 std::task::Poll::Ready(Ok(())) => {}
7296 std::task::Poll::Pending => return std::task::Poll::Pending,
7297 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
7298 this.is_terminated = true;
7299 return std::task::Poll::Ready(None);
7300 }
7301 std::task::Poll::Ready(Err(e)) => {
7302 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
7303 e.into(),
7304 ))))
7305 }
7306 }
7307
7308 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
7310
7311 std::task::Poll::Ready(Some(match header.ordinal {
7312 0x7e1509bf8c7582f6 => {
7313 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
7314 let mut req = fidl::new_empty!(
7315 fidl::encoding::EmptyPayload,
7316 fidl::encoding::DefaultFuchsiaResourceDialect
7317 );
7318 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
7319 let control_handle = NightModeControlHandle { inner: this.inner.clone() };
7320 Ok(NightModeRequest::Watch {
7321 responder: NightModeWatchResponder {
7322 control_handle: std::mem::ManuallyDrop::new(control_handle),
7323 tx_id: header.tx_id,
7324 },
7325 })
7326 }
7327 0x28c3d78ab05b55cd => {
7328 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
7329 let mut req = fidl::new_empty!(
7330 NightModeSetRequest,
7331 fidl::encoding::DefaultFuchsiaResourceDialect
7332 );
7333 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<NightModeSetRequest>(&header, _body_bytes, handles, &mut req)?;
7334 let control_handle = NightModeControlHandle { inner: this.inner.clone() };
7335 Ok(NightModeRequest::Set {
7336 settings: req.settings,
7337
7338 responder: NightModeSetResponder {
7339 control_handle: std::mem::ManuallyDrop::new(control_handle),
7340 tx_id: header.tx_id,
7341 },
7342 })
7343 }
7344 _ => Err(fidl::Error::UnknownOrdinal {
7345 ordinal: header.ordinal,
7346 protocol_name:
7347 <NightModeMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
7348 }),
7349 }))
7350 },
7351 )
7352 }
7353}
7354
7355#[derive(Debug)]
7366pub enum NightModeRequest {
7367 Watch { responder: NightModeWatchResponder },
7373 Set { settings: NightModeSettings, responder: NightModeSetResponder },
7376}
7377
7378impl NightModeRequest {
7379 #[allow(irrefutable_let_patterns)]
7380 pub fn into_watch(self) -> Option<(NightModeWatchResponder)> {
7381 if let NightModeRequest::Watch { responder } = self {
7382 Some((responder))
7383 } else {
7384 None
7385 }
7386 }
7387
7388 #[allow(irrefutable_let_patterns)]
7389 pub fn into_set(self) -> Option<(NightModeSettings, NightModeSetResponder)> {
7390 if let NightModeRequest::Set { settings, responder } = self {
7391 Some((settings, responder))
7392 } else {
7393 None
7394 }
7395 }
7396
7397 pub fn method_name(&self) -> &'static str {
7399 match *self {
7400 NightModeRequest::Watch { .. } => "watch",
7401 NightModeRequest::Set { .. } => "set",
7402 }
7403 }
7404}
7405
7406#[derive(Debug, Clone)]
7407pub struct NightModeControlHandle {
7408 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
7409}
7410
7411impl fidl::endpoints::ControlHandle for NightModeControlHandle {
7412 fn shutdown(&self) {
7413 self.inner.shutdown()
7414 }
7415 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
7416 self.inner.shutdown_with_epitaph(status)
7417 }
7418
7419 fn is_closed(&self) -> bool {
7420 self.inner.channel().is_closed()
7421 }
7422 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
7423 self.inner.channel().on_closed()
7424 }
7425
7426 #[cfg(target_os = "fuchsia")]
7427 fn signal_peer(
7428 &self,
7429 clear_mask: zx::Signals,
7430 set_mask: zx::Signals,
7431 ) -> Result<(), zx_status::Status> {
7432 use fidl::Peered;
7433 self.inner.channel().signal_peer(clear_mask, set_mask)
7434 }
7435}
7436
7437impl NightModeControlHandle {}
7438
7439#[must_use = "FIDL methods require a response to be sent"]
7440#[derive(Debug)]
7441pub struct NightModeWatchResponder {
7442 control_handle: std::mem::ManuallyDrop<NightModeControlHandle>,
7443 tx_id: u32,
7444}
7445
7446impl std::ops::Drop for NightModeWatchResponder {
7450 fn drop(&mut self) {
7451 self.control_handle.shutdown();
7452 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
7454 }
7455}
7456
7457impl fidl::endpoints::Responder for NightModeWatchResponder {
7458 type ControlHandle = NightModeControlHandle;
7459
7460 fn control_handle(&self) -> &NightModeControlHandle {
7461 &self.control_handle
7462 }
7463
7464 fn drop_without_shutdown(mut self) {
7465 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
7467 std::mem::forget(self);
7469 }
7470}
7471
7472impl NightModeWatchResponder {
7473 pub fn send(self, mut settings: &NightModeSettings) -> Result<(), fidl::Error> {
7477 let _result = self.send_raw(settings);
7478 if _result.is_err() {
7479 self.control_handle.shutdown();
7480 }
7481 self.drop_without_shutdown();
7482 _result
7483 }
7484
7485 pub fn send_no_shutdown_on_err(
7487 self,
7488 mut settings: &NightModeSettings,
7489 ) -> Result<(), fidl::Error> {
7490 let _result = self.send_raw(settings);
7491 self.drop_without_shutdown();
7492 _result
7493 }
7494
7495 fn send_raw(&self, mut settings: &NightModeSettings) -> Result<(), fidl::Error> {
7496 self.control_handle.inner.send::<NightModeWatchResponse>(
7497 (settings,),
7498 self.tx_id,
7499 0x7e1509bf8c7582f6,
7500 fidl::encoding::DynamicFlags::empty(),
7501 )
7502 }
7503}
7504
7505#[must_use = "FIDL methods require a response to be sent"]
7506#[derive(Debug)]
7507pub struct NightModeSetResponder {
7508 control_handle: std::mem::ManuallyDrop<NightModeControlHandle>,
7509 tx_id: u32,
7510}
7511
7512impl std::ops::Drop for NightModeSetResponder {
7516 fn drop(&mut self) {
7517 self.control_handle.shutdown();
7518 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
7520 }
7521}
7522
7523impl fidl::endpoints::Responder for NightModeSetResponder {
7524 type ControlHandle = NightModeControlHandle;
7525
7526 fn control_handle(&self) -> &NightModeControlHandle {
7527 &self.control_handle
7528 }
7529
7530 fn drop_without_shutdown(mut self) {
7531 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
7533 std::mem::forget(self);
7535 }
7536}
7537
7538impl NightModeSetResponder {
7539 pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
7543 let _result = self.send_raw(result);
7544 if _result.is_err() {
7545 self.control_handle.shutdown();
7546 }
7547 self.drop_without_shutdown();
7548 _result
7549 }
7550
7551 pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
7553 let _result = self.send_raw(result);
7554 self.drop_without_shutdown();
7555 _result
7556 }
7557
7558 fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
7559 self.control_handle
7560 .inner
7561 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
7562 result,
7563 self.tx_id,
7564 0x28c3d78ab05b55cd,
7565 fidl::encoding::DynamicFlags::empty(),
7566 )
7567 }
7568}
7569
7570#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
7571pub struct PrivacyMarker;
7572
7573impl fidl::endpoints::ProtocolMarker for PrivacyMarker {
7574 type Proxy = PrivacyProxy;
7575 type RequestStream = PrivacyRequestStream;
7576 #[cfg(target_os = "fuchsia")]
7577 type SynchronousProxy = PrivacySynchronousProxy;
7578
7579 const DEBUG_NAME: &'static str = "fuchsia.settings.Privacy";
7580}
7581impl fidl::endpoints::DiscoverableProtocolMarker for PrivacyMarker {}
7582pub type PrivacySetResult = Result<(), Error>;
7583
7584pub trait PrivacyProxyInterface: Send + Sync {
7585 type WatchResponseFut: std::future::Future<Output = Result<PrivacySettings, fidl::Error>> + Send;
7586 fn r#watch(&self) -> Self::WatchResponseFut;
7587 type SetResponseFut: std::future::Future<Output = Result<PrivacySetResult, fidl::Error>> + Send;
7588 fn r#set(&self, settings: &PrivacySettings) -> Self::SetResponseFut;
7589}
7590#[derive(Debug)]
7591#[cfg(target_os = "fuchsia")]
7592pub struct PrivacySynchronousProxy {
7593 client: fidl::client::sync::Client,
7594}
7595
7596#[cfg(target_os = "fuchsia")]
7597impl fidl::endpoints::SynchronousProxy for PrivacySynchronousProxy {
7598 type Proxy = PrivacyProxy;
7599 type Protocol = PrivacyMarker;
7600
7601 fn from_channel(inner: fidl::Channel) -> Self {
7602 Self::new(inner)
7603 }
7604
7605 fn into_channel(self) -> fidl::Channel {
7606 self.client.into_channel()
7607 }
7608
7609 fn as_channel(&self) -> &fidl::Channel {
7610 self.client.as_channel()
7611 }
7612}
7613
7614#[cfg(target_os = "fuchsia")]
7615impl PrivacySynchronousProxy {
7616 pub fn new(channel: fidl::Channel) -> Self {
7617 let protocol_name = <PrivacyMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
7618 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
7619 }
7620
7621 pub fn into_channel(self) -> fidl::Channel {
7622 self.client.into_channel()
7623 }
7624
7625 pub fn wait_for_event(
7628 &self,
7629 deadline: zx::MonotonicInstant,
7630 ) -> Result<PrivacyEvent, fidl::Error> {
7631 PrivacyEvent::decode(self.client.wait_for_event(deadline)?)
7632 }
7633
7634 pub fn r#watch(
7642 &self,
7643 ___deadline: zx::MonotonicInstant,
7644 ) -> Result<PrivacySettings, fidl::Error> {
7645 let _response =
7646 self.client.send_query::<fidl::encoding::EmptyPayload, PrivacyWatchResponse>(
7647 (),
7648 0x1cb0c420ed81f47c,
7649 fidl::encoding::DynamicFlags::empty(),
7650 ___deadline,
7651 )?;
7652 Ok(_response.settings)
7653 }
7654
7655 pub fn r#set(
7659 &self,
7660 mut settings: &PrivacySettings,
7661 ___deadline: zx::MonotonicInstant,
7662 ) -> Result<PrivacySetResult, fidl::Error> {
7663 let _response = self.client.send_query::<PrivacySetRequest, fidl::encoding::ResultType<
7664 fidl::encoding::EmptyStruct,
7665 Error,
7666 >>(
7667 (settings,),
7668 0xe2f4a1c85885537,
7669 fidl::encoding::DynamicFlags::empty(),
7670 ___deadline,
7671 )?;
7672 Ok(_response.map(|x| x))
7673 }
7674}
7675
7676#[cfg(target_os = "fuchsia")]
7677impl From<PrivacySynchronousProxy> for zx::Handle {
7678 fn from(value: PrivacySynchronousProxy) -> Self {
7679 value.into_channel().into()
7680 }
7681}
7682
7683#[cfg(target_os = "fuchsia")]
7684impl From<fidl::Channel> for PrivacySynchronousProxy {
7685 fn from(value: fidl::Channel) -> Self {
7686 Self::new(value)
7687 }
7688}
7689
7690#[derive(Debug, Clone)]
7691pub struct PrivacyProxy {
7692 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
7693}
7694
7695impl fidl::endpoints::Proxy for PrivacyProxy {
7696 type Protocol = PrivacyMarker;
7697
7698 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
7699 Self::new(inner)
7700 }
7701
7702 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
7703 self.client.into_channel().map_err(|client| Self { client })
7704 }
7705
7706 fn as_channel(&self) -> &::fidl::AsyncChannel {
7707 self.client.as_channel()
7708 }
7709}
7710
7711impl PrivacyProxy {
7712 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
7714 let protocol_name = <PrivacyMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
7715 Self { client: fidl::client::Client::new(channel, protocol_name) }
7716 }
7717
7718 pub fn take_event_stream(&self) -> PrivacyEventStream {
7724 PrivacyEventStream { event_receiver: self.client.take_event_receiver() }
7725 }
7726
7727 pub fn r#watch(
7735 &self,
7736 ) -> fidl::client::QueryResponseFut<
7737 PrivacySettings,
7738 fidl::encoding::DefaultFuchsiaResourceDialect,
7739 > {
7740 PrivacyProxyInterface::r#watch(self)
7741 }
7742
7743 pub fn r#set(
7747 &self,
7748 mut settings: &PrivacySettings,
7749 ) -> fidl::client::QueryResponseFut<
7750 PrivacySetResult,
7751 fidl::encoding::DefaultFuchsiaResourceDialect,
7752 > {
7753 PrivacyProxyInterface::r#set(self, settings)
7754 }
7755}
7756
7757impl PrivacyProxyInterface for PrivacyProxy {
7758 type WatchResponseFut = fidl::client::QueryResponseFut<
7759 PrivacySettings,
7760 fidl::encoding::DefaultFuchsiaResourceDialect,
7761 >;
7762 fn r#watch(&self) -> Self::WatchResponseFut {
7763 fn _decode(
7764 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
7765 ) -> Result<PrivacySettings, fidl::Error> {
7766 let _response = fidl::client::decode_transaction_body::<
7767 PrivacyWatchResponse,
7768 fidl::encoding::DefaultFuchsiaResourceDialect,
7769 0x1cb0c420ed81f47c,
7770 >(_buf?)?;
7771 Ok(_response.settings)
7772 }
7773 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, PrivacySettings>(
7774 (),
7775 0x1cb0c420ed81f47c,
7776 fidl::encoding::DynamicFlags::empty(),
7777 _decode,
7778 )
7779 }
7780
7781 type SetResponseFut = fidl::client::QueryResponseFut<
7782 PrivacySetResult,
7783 fidl::encoding::DefaultFuchsiaResourceDialect,
7784 >;
7785 fn r#set(&self, mut settings: &PrivacySettings) -> Self::SetResponseFut {
7786 fn _decode(
7787 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
7788 ) -> Result<PrivacySetResult, fidl::Error> {
7789 let _response = fidl::client::decode_transaction_body::<
7790 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
7791 fidl::encoding::DefaultFuchsiaResourceDialect,
7792 0xe2f4a1c85885537,
7793 >(_buf?)?;
7794 Ok(_response.map(|x| x))
7795 }
7796 self.client.send_query_and_decode::<PrivacySetRequest, PrivacySetResult>(
7797 (settings,),
7798 0xe2f4a1c85885537,
7799 fidl::encoding::DynamicFlags::empty(),
7800 _decode,
7801 )
7802 }
7803}
7804
7805pub struct PrivacyEventStream {
7806 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
7807}
7808
7809impl std::marker::Unpin for PrivacyEventStream {}
7810
7811impl futures::stream::FusedStream for PrivacyEventStream {
7812 fn is_terminated(&self) -> bool {
7813 self.event_receiver.is_terminated()
7814 }
7815}
7816
7817impl futures::Stream for PrivacyEventStream {
7818 type Item = Result<PrivacyEvent, fidl::Error>;
7819
7820 fn poll_next(
7821 mut self: std::pin::Pin<&mut Self>,
7822 cx: &mut std::task::Context<'_>,
7823 ) -> std::task::Poll<Option<Self::Item>> {
7824 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
7825 &mut self.event_receiver,
7826 cx
7827 )?) {
7828 Some(buf) => std::task::Poll::Ready(Some(PrivacyEvent::decode(buf))),
7829 None => std::task::Poll::Ready(None),
7830 }
7831 }
7832}
7833
7834#[derive(Debug)]
7835pub enum PrivacyEvent {}
7836
7837impl PrivacyEvent {
7838 fn decode(
7840 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
7841 ) -> Result<PrivacyEvent, fidl::Error> {
7842 let (bytes, _handles) = buf.split_mut();
7843 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
7844 debug_assert_eq!(tx_header.tx_id, 0);
7845 match tx_header.ordinal {
7846 _ => Err(fidl::Error::UnknownOrdinal {
7847 ordinal: tx_header.ordinal,
7848 protocol_name: <PrivacyMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
7849 }),
7850 }
7851 }
7852}
7853
7854pub struct PrivacyRequestStream {
7856 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
7857 is_terminated: bool,
7858}
7859
7860impl std::marker::Unpin for PrivacyRequestStream {}
7861
7862impl futures::stream::FusedStream for PrivacyRequestStream {
7863 fn is_terminated(&self) -> bool {
7864 self.is_terminated
7865 }
7866}
7867
7868impl fidl::endpoints::RequestStream for PrivacyRequestStream {
7869 type Protocol = PrivacyMarker;
7870 type ControlHandle = PrivacyControlHandle;
7871
7872 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
7873 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
7874 }
7875
7876 fn control_handle(&self) -> Self::ControlHandle {
7877 PrivacyControlHandle { inner: self.inner.clone() }
7878 }
7879
7880 fn into_inner(
7881 self,
7882 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
7883 {
7884 (self.inner, self.is_terminated)
7885 }
7886
7887 fn from_inner(
7888 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
7889 is_terminated: bool,
7890 ) -> Self {
7891 Self { inner, is_terminated }
7892 }
7893}
7894
7895impl futures::Stream for PrivacyRequestStream {
7896 type Item = Result<PrivacyRequest, fidl::Error>;
7897
7898 fn poll_next(
7899 mut self: std::pin::Pin<&mut Self>,
7900 cx: &mut std::task::Context<'_>,
7901 ) -> std::task::Poll<Option<Self::Item>> {
7902 let this = &mut *self;
7903 if this.inner.check_shutdown(cx) {
7904 this.is_terminated = true;
7905 return std::task::Poll::Ready(None);
7906 }
7907 if this.is_terminated {
7908 panic!("polled PrivacyRequestStream after completion");
7909 }
7910 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
7911 |bytes, handles| {
7912 match this.inner.channel().read_etc(cx, bytes, handles) {
7913 std::task::Poll::Ready(Ok(())) => {}
7914 std::task::Poll::Pending => return std::task::Poll::Pending,
7915 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
7916 this.is_terminated = true;
7917 return std::task::Poll::Ready(None);
7918 }
7919 std::task::Poll::Ready(Err(e)) => {
7920 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
7921 e.into(),
7922 ))))
7923 }
7924 }
7925
7926 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
7928
7929 std::task::Poll::Ready(Some(match header.ordinal {
7930 0x1cb0c420ed81f47c => {
7931 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
7932 let mut req = fidl::new_empty!(
7933 fidl::encoding::EmptyPayload,
7934 fidl::encoding::DefaultFuchsiaResourceDialect
7935 );
7936 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
7937 let control_handle = PrivacyControlHandle { inner: this.inner.clone() };
7938 Ok(PrivacyRequest::Watch {
7939 responder: PrivacyWatchResponder {
7940 control_handle: std::mem::ManuallyDrop::new(control_handle),
7941 tx_id: header.tx_id,
7942 },
7943 })
7944 }
7945 0xe2f4a1c85885537 => {
7946 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
7947 let mut req = fidl::new_empty!(
7948 PrivacySetRequest,
7949 fidl::encoding::DefaultFuchsiaResourceDialect
7950 );
7951 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<PrivacySetRequest>(&header, _body_bytes, handles, &mut req)?;
7952 let control_handle = PrivacyControlHandle { inner: this.inner.clone() };
7953 Ok(PrivacyRequest::Set {
7954 settings: req.settings,
7955
7956 responder: PrivacySetResponder {
7957 control_handle: std::mem::ManuallyDrop::new(control_handle),
7958 tx_id: header.tx_id,
7959 },
7960 })
7961 }
7962 _ => Err(fidl::Error::UnknownOrdinal {
7963 ordinal: header.ordinal,
7964 protocol_name:
7965 <PrivacyMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
7966 }),
7967 }))
7968 },
7969 )
7970 }
7971}
7972
7973#[derive(Debug)]
7978pub enum PrivacyRequest {
7979 Watch { responder: PrivacyWatchResponder },
7987 Set { settings: PrivacySettings, responder: PrivacySetResponder },
7991}
7992
7993impl PrivacyRequest {
7994 #[allow(irrefutable_let_patterns)]
7995 pub fn into_watch(self) -> Option<(PrivacyWatchResponder)> {
7996 if let PrivacyRequest::Watch { responder } = self {
7997 Some((responder))
7998 } else {
7999 None
8000 }
8001 }
8002
8003 #[allow(irrefutable_let_patterns)]
8004 pub fn into_set(self) -> Option<(PrivacySettings, PrivacySetResponder)> {
8005 if let PrivacyRequest::Set { settings, responder } = self {
8006 Some((settings, responder))
8007 } else {
8008 None
8009 }
8010 }
8011
8012 pub fn method_name(&self) -> &'static str {
8014 match *self {
8015 PrivacyRequest::Watch { .. } => "watch",
8016 PrivacyRequest::Set { .. } => "set",
8017 }
8018 }
8019}
8020
8021#[derive(Debug, Clone)]
8022pub struct PrivacyControlHandle {
8023 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
8024}
8025
8026impl fidl::endpoints::ControlHandle for PrivacyControlHandle {
8027 fn shutdown(&self) {
8028 self.inner.shutdown()
8029 }
8030 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
8031 self.inner.shutdown_with_epitaph(status)
8032 }
8033
8034 fn is_closed(&self) -> bool {
8035 self.inner.channel().is_closed()
8036 }
8037 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
8038 self.inner.channel().on_closed()
8039 }
8040
8041 #[cfg(target_os = "fuchsia")]
8042 fn signal_peer(
8043 &self,
8044 clear_mask: zx::Signals,
8045 set_mask: zx::Signals,
8046 ) -> Result<(), zx_status::Status> {
8047 use fidl::Peered;
8048 self.inner.channel().signal_peer(clear_mask, set_mask)
8049 }
8050}
8051
8052impl PrivacyControlHandle {}
8053
8054#[must_use = "FIDL methods require a response to be sent"]
8055#[derive(Debug)]
8056pub struct PrivacyWatchResponder {
8057 control_handle: std::mem::ManuallyDrop<PrivacyControlHandle>,
8058 tx_id: u32,
8059}
8060
8061impl std::ops::Drop for PrivacyWatchResponder {
8065 fn drop(&mut self) {
8066 self.control_handle.shutdown();
8067 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
8069 }
8070}
8071
8072impl fidl::endpoints::Responder for PrivacyWatchResponder {
8073 type ControlHandle = PrivacyControlHandle;
8074
8075 fn control_handle(&self) -> &PrivacyControlHandle {
8076 &self.control_handle
8077 }
8078
8079 fn drop_without_shutdown(mut self) {
8080 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
8082 std::mem::forget(self);
8084 }
8085}
8086
8087impl PrivacyWatchResponder {
8088 pub fn send(self, mut settings: &PrivacySettings) -> Result<(), fidl::Error> {
8092 let _result = self.send_raw(settings);
8093 if _result.is_err() {
8094 self.control_handle.shutdown();
8095 }
8096 self.drop_without_shutdown();
8097 _result
8098 }
8099
8100 pub fn send_no_shutdown_on_err(
8102 self,
8103 mut settings: &PrivacySettings,
8104 ) -> Result<(), fidl::Error> {
8105 let _result = self.send_raw(settings);
8106 self.drop_without_shutdown();
8107 _result
8108 }
8109
8110 fn send_raw(&self, mut settings: &PrivacySettings) -> Result<(), fidl::Error> {
8111 self.control_handle.inner.send::<PrivacyWatchResponse>(
8112 (settings,),
8113 self.tx_id,
8114 0x1cb0c420ed81f47c,
8115 fidl::encoding::DynamicFlags::empty(),
8116 )
8117 }
8118}
8119
8120#[must_use = "FIDL methods require a response to be sent"]
8121#[derive(Debug)]
8122pub struct PrivacySetResponder {
8123 control_handle: std::mem::ManuallyDrop<PrivacyControlHandle>,
8124 tx_id: u32,
8125}
8126
8127impl std::ops::Drop for PrivacySetResponder {
8131 fn drop(&mut self) {
8132 self.control_handle.shutdown();
8133 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
8135 }
8136}
8137
8138impl fidl::endpoints::Responder for PrivacySetResponder {
8139 type ControlHandle = PrivacyControlHandle;
8140
8141 fn control_handle(&self) -> &PrivacyControlHandle {
8142 &self.control_handle
8143 }
8144
8145 fn drop_without_shutdown(mut self) {
8146 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
8148 std::mem::forget(self);
8150 }
8151}
8152
8153impl PrivacySetResponder {
8154 pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
8158 let _result = self.send_raw(result);
8159 if _result.is_err() {
8160 self.control_handle.shutdown();
8161 }
8162 self.drop_without_shutdown();
8163 _result
8164 }
8165
8166 pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
8168 let _result = self.send_raw(result);
8169 self.drop_without_shutdown();
8170 _result
8171 }
8172
8173 fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
8174 self.control_handle
8175 .inner
8176 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
8177 result,
8178 self.tx_id,
8179 0xe2f4a1c85885537,
8180 fidl::encoding::DynamicFlags::empty(),
8181 )
8182 }
8183}
8184
8185#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
8186pub struct SetupMarker;
8187
8188impl fidl::endpoints::ProtocolMarker for SetupMarker {
8189 type Proxy = SetupProxy;
8190 type RequestStream = SetupRequestStream;
8191 #[cfg(target_os = "fuchsia")]
8192 type SynchronousProxy = SetupSynchronousProxy;
8193
8194 const DEBUG_NAME: &'static str = "fuchsia.settings.Setup";
8195}
8196impl fidl::endpoints::DiscoverableProtocolMarker for SetupMarker {}
8197pub type SetupSetResult = Result<(), Error>;
8198
8199pub trait SetupProxyInterface: Send + Sync {
8200 type WatchResponseFut: std::future::Future<Output = Result<SetupSettings, fidl::Error>> + Send;
8201 fn r#watch(&self) -> Self::WatchResponseFut;
8202 type SetResponseFut: std::future::Future<Output = Result<SetupSetResult, fidl::Error>> + Send;
8203 fn r#set(&self, settings: &SetupSettings, reboot_device: bool) -> Self::SetResponseFut;
8204}
8205#[derive(Debug)]
8206#[cfg(target_os = "fuchsia")]
8207pub struct SetupSynchronousProxy {
8208 client: fidl::client::sync::Client,
8209}
8210
8211#[cfg(target_os = "fuchsia")]
8212impl fidl::endpoints::SynchronousProxy for SetupSynchronousProxy {
8213 type Proxy = SetupProxy;
8214 type Protocol = SetupMarker;
8215
8216 fn from_channel(inner: fidl::Channel) -> Self {
8217 Self::new(inner)
8218 }
8219
8220 fn into_channel(self) -> fidl::Channel {
8221 self.client.into_channel()
8222 }
8223
8224 fn as_channel(&self) -> &fidl::Channel {
8225 self.client.as_channel()
8226 }
8227}
8228
8229#[cfg(target_os = "fuchsia")]
8230impl SetupSynchronousProxy {
8231 pub fn new(channel: fidl::Channel) -> Self {
8232 let protocol_name = <SetupMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
8233 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
8234 }
8235
8236 pub fn into_channel(self) -> fidl::Channel {
8237 self.client.into_channel()
8238 }
8239
8240 pub fn wait_for_event(
8243 &self,
8244 deadline: zx::MonotonicInstant,
8245 ) -> Result<SetupEvent, fidl::Error> {
8246 SetupEvent::decode(self.client.wait_for_event(deadline)?)
8247 }
8248
8249 pub fn r#watch(&self, ___deadline: zx::MonotonicInstant) -> Result<SetupSettings, fidl::Error> {
8255 let _response =
8256 self.client.send_query::<fidl::encoding::EmptyPayload, SetupWatchResponse>(
8257 (),
8258 0xd3893c0e63c0a6e,
8259 fidl::encoding::DynamicFlags::empty(),
8260 ___deadline,
8261 )?;
8262 Ok(_response.settings)
8263 }
8264
8265 pub fn r#set(
8270 &self,
8271 mut settings: &SetupSettings,
8272 mut reboot_device: bool,
8273 ___deadline: zx::MonotonicInstant,
8274 ) -> Result<SetupSetResult, fidl::Error> {
8275 let _response = self.client.send_query::<SetupSetRequest, fidl::encoding::ResultType<
8276 fidl::encoding::EmptyStruct,
8277 Error,
8278 >>(
8279 (settings, reboot_device),
8280 0x66a20be769388128,
8281 fidl::encoding::DynamicFlags::empty(),
8282 ___deadline,
8283 )?;
8284 Ok(_response.map(|x| x))
8285 }
8286}
8287
8288#[cfg(target_os = "fuchsia")]
8289impl From<SetupSynchronousProxy> for zx::Handle {
8290 fn from(value: SetupSynchronousProxy) -> Self {
8291 value.into_channel().into()
8292 }
8293}
8294
8295#[cfg(target_os = "fuchsia")]
8296impl From<fidl::Channel> for SetupSynchronousProxy {
8297 fn from(value: fidl::Channel) -> Self {
8298 Self::new(value)
8299 }
8300}
8301
8302#[derive(Debug, Clone)]
8303pub struct SetupProxy {
8304 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
8305}
8306
8307impl fidl::endpoints::Proxy for SetupProxy {
8308 type Protocol = SetupMarker;
8309
8310 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
8311 Self::new(inner)
8312 }
8313
8314 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
8315 self.client.into_channel().map_err(|client| Self { client })
8316 }
8317
8318 fn as_channel(&self) -> &::fidl::AsyncChannel {
8319 self.client.as_channel()
8320 }
8321}
8322
8323impl SetupProxy {
8324 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
8326 let protocol_name = <SetupMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
8327 Self { client: fidl::client::Client::new(channel, protocol_name) }
8328 }
8329
8330 pub fn take_event_stream(&self) -> SetupEventStream {
8336 SetupEventStream { event_receiver: self.client.take_event_receiver() }
8337 }
8338
8339 pub fn r#watch(
8345 &self,
8346 ) -> fidl::client::QueryResponseFut<SetupSettings, fidl::encoding::DefaultFuchsiaResourceDialect>
8347 {
8348 SetupProxyInterface::r#watch(self)
8349 }
8350
8351 pub fn r#set(
8356 &self,
8357 mut settings: &SetupSettings,
8358 mut reboot_device: bool,
8359 ) -> fidl::client::QueryResponseFut<SetupSetResult, fidl::encoding::DefaultFuchsiaResourceDialect>
8360 {
8361 SetupProxyInterface::r#set(self, settings, reboot_device)
8362 }
8363}
8364
8365impl SetupProxyInterface for SetupProxy {
8366 type WatchResponseFut = fidl::client::QueryResponseFut<
8367 SetupSettings,
8368 fidl::encoding::DefaultFuchsiaResourceDialect,
8369 >;
8370 fn r#watch(&self) -> Self::WatchResponseFut {
8371 fn _decode(
8372 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8373 ) -> Result<SetupSettings, fidl::Error> {
8374 let _response = fidl::client::decode_transaction_body::<
8375 SetupWatchResponse,
8376 fidl::encoding::DefaultFuchsiaResourceDialect,
8377 0xd3893c0e63c0a6e,
8378 >(_buf?)?;
8379 Ok(_response.settings)
8380 }
8381 self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, SetupSettings>(
8382 (),
8383 0xd3893c0e63c0a6e,
8384 fidl::encoding::DynamicFlags::empty(),
8385 _decode,
8386 )
8387 }
8388
8389 type SetResponseFut = fidl::client::QueryResponseFut<
8390 SetupSetResult,
8391 fidl::encoding::DefaultFuchsiaResourceDialect,
8392 >;
8393 fn r#set(&self, mut settings: &SetupSettings, mut reboot_device: bool) -> Self::SetResponseFut {
8394 fn _decode(
8395 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
8396 ) -> Result<SetupSetResult, fidl::Error> {
8397 let _response = fidl::client::decode_transaction_body::<
8398 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
8399 fidl::encoding::DefaultFuchsiaResourceDialect,
8400 0x66a20be769388128,
8401 >(_buf?)?;
8402 Ok(_response.map(|x| x))
8403 }
8404 self.client.send_query_and_decode::<SetupSetRequest, SetupSetResult>(
8405 (settings, reboot_device),
8406 0x66a20be769388128,
8407 fidl::encoding::DynamicFlags::empty(),
8408 _decode,
8409 )
8410 }
8411}
8412
8413pub struct SetupEventStream {
8414 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
8415}
8416
8417impl std::marker::Unpin for SetupEventStream {}
8418
8419impl futures::stream::FusedStream for SetupEventStream {
8420 fn is_terminated(&self) -> bool {
8421 self.event_receiver.is_terminated()
8422 }
8423}
8424
8425impl futures::Stream for SetupEventStream {
8426 type Item = Result<SetupEvent, fidl::Error>;
8427
8428 fn poll_next(
8429 mut self: std::pin::Pin<&mut Self>,
8430 cx: &mut std::task::Context<'_>,
8431 ) -> std::task::Poll<Option<Self::Item>> {
8432 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
8433 &mut self.event_receiver,
8434 cx
8435 )?) {
8436 Some(buf) => std::task::Poll::Ready(Some(SetupEvent::decode(buf))),
8437 None => std::task::Poll::Ready(None),
8438 }
8439 }
8440}
8441
8442#[derive(Debug)]
8443pub enum SetupEvent {}
8444
8445impl SetupEvent {
8446 fn decode(
8448 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
8449 ) -> Result<SetupEvent, fidl::Error> {
8450 let (bytes, _handles) = buf.split_mut();
8451 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
8452 debug_assert_eq!(tx_header.tx_id, 0);
8453 match tx_header.ordinal {
8454 _ => Err(fidl::Error::UnknownOrdinal {
8455 ordinal: tx_header.ordinal,
8456 protocol_name: <SetupMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
8457 }),
8458 }
8459 }
8460}
8461
8462pub struct SetupRequestStream {
8464 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
8465 is_terminated: bool,
8466}
8467
8468impl std::marker::Unpin for SetupRequestStream {}
8469
8470impl futures::stream::FusedStream for SetupRequestStream {
8471 fn is_terminated(&self) -> bool {
8472 self.is_terminated
8473 }
8474}
8475
8476impl fidl::endpoints::RequestStream for SetupRequestStream {
8477 type Protocol = SetupMarker;
8478 type ControlHandle = SetupControlHandle;
8479
8480 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
8481 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
8482 }
8483
8484 fn control_handle(&self) -> Self::ControlHandle {
8485 SetupControlHandle { inner: self.inner.clone() }
8486 }
8487
8488 fn into_inner(
8489 self,
8490 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
8491 {
8492 (self.inner, self.is_terminated)
8493 }
8494
8495 fn from_inner(
8496 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
8497 is_terminated: bool,
8498 ) -> Self {
8499 Self { inner, is_terminated }
8500 }
8501}
8502
8503impl futures::Stream for SetupRequestStream {
8504 type Item = Result<SetupRequest, fidl::Error>;
8505
8506 fn poll_next(
8507 mut self: std::pin::Pin<&mut Self>,
8508 cx: &mut std::task::Context<'_>,
8509 ) -> std::task::Poll<Option<Self::Item>> {
8510 let this = &mut *self;
8511 if this.inner.check_shutdown(cx) {
8512 this.is_terminated = true;
8513 return std::task::Poll::Ready(None);
8514 }
8515 if this.is_terminated {
8516 panic!("polled SetupRequestStream after completion");
8517 }
8518 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
8519 |bytes, handles| {
8520 match this.inner.channel().read_etc(cx, bytes, handles) {
8521 std::task::Poll::Ready(Ok(())) => {}
8522 std::task::Poll::Pending => return std::task::Poll::Pending,
8523 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
8524 this.is_terminated = true;
8525 return std::task::Poll::Ready(None);
8526 }
8527 std::task::Poll::Ready(Err(e)) => {
8528 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
8529 e.into(),
8530 ))))
8531 }
8532 }
8533
8534 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
8536
8537 std::task::Poll::Ready(Some(match header.ordinal {
8538 0xd3893c0e63c0a6e => {
8539 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
8540 let mut req = fidl::new_empty!(
8541 fidl::encoding::EmptyPayload,
8542 fidl::encoding::DefaultFuchsiaResourceDialect
8543 );
8544 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
8545 let control_handle = SetupControlHandle { inner: this.inner.clone() };
8546 Ok(SetupRequest::Watch {
8547 responder: SetupWatchResponder {
8548 control_handle: std::mem::ManuallyDrop::new(control_handle),
8549 tx_id: header.tx_id,
8550 },
8551 })
8552 }
8553 0x66a20be769388128 => {
8554 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
8555 let mut req = fidl::new_empty!(
8556 SetupSetRequest,
8557 fidl::encoding::DefaultFuchsiaResourceDialect
8558 );
8559 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<SetupSetRequest>(&header, _body_bytes, handles, &mut req)?;
8560 let control_handle = SetupControlHandle { inner: this.inner.clone() };
8561 Ok(SetupRequest::Set {
8562 settings: req.settings,
8563 reboot_device: req.reboot_device,
8564
8565 responder: SetupSetResponder {
8566 control_handle: std::mem::ManuallyDrop::new(control_handle),
8567 tx_id: header.tx_id,
8568 },
8569 })
8570 }
8571 _ => Err(fidl::Error::UnknownOrdinal {
8572 ordinal: header.ordinal,
8573 protocol_name: <SetupMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
8574 }),
8575 }))
8576 },
8577 )
8578 }
8579}
8580
8581#[derive(Debug)]
8586pub enum SetupRequest {
8587 Watch { responder: SetupWatchResponder },
8593 Set { settings: SetupSettings, reboot_device: bool, responder: SetupSetResponder },
8598}
8599
8600impl SetupRequest {
8601 #[allow(irrefutable_let_patterns)]
8602 pub fn into_watch(self) -> Option<(SetupWatchResponder)> {
8603 if let SetupRequest::Watch { responder } = self {
8604 Some((responder))
8605 } else {
8606 None
8607 }
8608 }
8609
8610 #[allow(irrefutable_let_patterns)]
8611 pub fn into_set(self) -> Option<(SetupSettings, bool, SetupSetResponder)> {
8612 if let SetupRequest::Set { settings, reboot_device, responder } = self {
8613 Some((settings, reboot_device, responder))
8614 } else {
8615 None
8616 }
8617 }
8618
8619 pub fn method_name(&self) -> &'static str {
8621 match *self {
8622 SetupRequest::Watch { .. } => "watch",
8623 SetupRequest::Set { .. } => "set",
8624 }
8625 }
8626}
8627
8628#[derive(Debug, Clone)]
8629pub struct SetupControlHandle {
8630 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
8631}
8632
8633impl fidl::endpoints::ControlHandle for SetupControlHandle {
8634 fn shutdown(&self) {
8635 self.inner.shutdown()
8636 }
8637 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
8638 self.inner.shutdown_with_epitaph(status)
8639 }
8640
8641 fn is_closed(&self) -> bool {
8642 self.inner.channel().is_closed()
8643 }
8644 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
8645 self.inner.channel().on_closed()
8646 }
8647
8648 #[cfg(target_os = "fuchsia")]
8649 fn signal_peer(
8650 &self,
8651 clear_mask: zx::Signals,
8652 set_mask: zx::Signals,
8653 ) -> Result<(), zx_status::Status> {
8654 use fidl::Peered;
8655 self.inner.channel().signal_peer(clear_mask, set_mask)
8656 }
8657}
8658
8659impl SetupControlHandle {}
8660
8661#[must_use = "FIDL methods require a response to be sent"]
8662#[derive(Debug)]
8663pub struct SetupWatchResponder {
8664 control_handle: std::mem::ManuallyDrop<SetupControlHandle>,
8665 tx_id: u32,
8666}
8667
8668impl std::ops::Drop for SetupWatchResponder {
8672 fn drop(&mut self) {
8673 self.control_handle.shutdown();
8674 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
8676 }
8677}
8678
8679impl fidl::endpoints::Responder for SetupWatchResponder {
8680 type ControlHandle = SetupControlHandle;
8681
8682 fn control_handle(&self) -> &SetupControlHandle {
8683 &self.control_handle
8684 }
8685
8686 fn drop_without_shutdown(mut self) {
8687 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
8689 std::mem::forget(self);
8691 }
8692}
8693
8694impl SetupWatchResponder {
8695 pub fn send(self, mut settings: &SetupSettings) -> Result<(), fidl::Error> {
8699 let _result = self.send_raw(settings);
8700 if _result.is_err() {
8701 self.control_handle.shutdown();
8702 }
8703 self.drop_without_shutdown();
8704 _result
8705 }
8706
8707 pub fn send_no_shutdown_on_err(self, mut settings: &SetupSettings) -> Result<(), fidl::Error> {
8709 let _result = self.send_raw(settings);
8710 self.drop_without_shutdown();
8711 _result
8712 }
8713
8714 fn send_raw(&self, mut settings: &SetupSettings) -> Result<(), fidl::Error> {
8715 self.control_handle.inner.send::<SetupWatchResponse>(
8716 (settings,),
8717 self.tx_id,
8718 0xd3893c0e63c0a6e,
8719 fidl::encoding::DynamicFlags::empty(),
8720 )
8721 }
8722}
8723
8724#[must_use = "FIDL methods require a response to be sent"]
8725#[derive(Debug)]
8726pub struct SetupSetResponder {
8727 control_handle: std::mem::ManuallyDrop<SetupControlHandle>,
8728 tx_id: u32,
8729}
8730
8731impl std::ops::Drop for SetupSetResponder {
8735 fn drop(&mut self) {
8736 self.control_handle.shutdown();
8737 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
8739 }
8740}
8741
8742impl fidl::endpoints::Responder for SetupSetResponder {
8743 type ControlHandle = SetupControlHandle;
8744
8745 fn control_handle(&self) -> &SetupControlHandle {
8746 &self.control_handle
8747 }
8748
8749 fn drop_without_shutdown(mut self) {
8750 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
8752 std::mem::forget(self);
8754 }
8755}
8756
8757impl SetupSetResponder {
8758 pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
8762 let _result = self.send_raw(result);
8763 if _result.is_err() {
8764 self.control_handle.shutdown();
8765 }
8766 self.drop_without_shutdown();
8767 _result
8768 }
8769
8770 pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
8772 let _result = self.send_raw(result);
8773 self.drop_without_shutdown();
8774 _result
8775 }
8776
8777 fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
8778 self.control_handle
8779 .inner
8780 .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
8781 result,
8782 self.tx_id,
8783 0x66a20be769388128,
8784 fidl::encoding::DynamicFlags::empty(),
8785 )
8786 }
8787}
8788
8789mod internal {
8790 use super::*;
8791}