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_media_audio_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct EffectsControllerMarker;
16
17impl fidl::endpoints::ProtocolMarker for EffectsControllerMarker {
18 type Proxy = EffectsControllerProxy;
19 type RequestStream = EffectsControllerRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = EffectsControllerSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "fuchsia.media.audio.EffectsController";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for EffectsControllerMarker {}
26pub type EffectsControllerUpdateEffectResult = Result<(), UpdateEffectError>;
27
28pub trait EffectsControllerProxyInterface: Send + Sync {
29 type UpdateEffectResponseFut: std::future::Future<Output = Result<EffectsControllerUpdateEffectResult, fidl::Error>>
30 + Send;
31 fn r#update_effect(&self, effect_name: &str, config: &str) -> Self::UpdateEffectResponseFut;
32}
33#[derive(Debug)]
34#[cfg(target_os = "fuchsia")]
35pub struct EffectsControllerSynchronousProxy {
36 client: fidl::client::sync::Client,
37}
38
39#[cfg(target_os = "fuchsia")]
40impl fidl::endpoints::SynchronousProxy for EffectsControllerSynchronousProxy {
41 type Proxy = EffectsControllerProxy;
42 type Protocol = EffectsControllerMarker;
43
44 fn from_channel(inner: fidl::Channel) -> Self {
45 Self::new(inner)
46 }
47
48 fn into_channel(self) -> fidl::Channel {
49 self.client.into_channel()
50 }
51
52 fn as_channel(&self) -> &fidl::Channel {
53 self.client.as_channel()
54 }
55}
56
57#[cfg(target_os = "fuchsia")]
58impl EffectsControllerSynchronousProxy {
59 pub fn new(channel: fidl::Channel) -> Self {
60 let protocol_name =
61 <EffectsControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
62 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
63 }
64
65 pub fn into_channel(self) -> fidl::Channel {
66 self.client.into_channel()
67 }
68
69 pub fn wait_for_event(
72 &self,
73 deadline: zx::MonotonicInstant,
74 ) -> Result<EffectsControllerEvent, fidl::Error> {
75 EffectsControllerEvent::decode(self.client.wait_for_event(deadline)?)
76 }
77
78 pub fn r#update_effect(
96 &self,
97 mut effect_name: &str,
98 mut config: &str,
99 ___deadline: zx::MonotonicInstant,
100 ) -> Result<EffectsControllerUpdateEffectResult, fidl::Error> {
101 let _response = self.client.send_query::<
102 EffectsControllerUpdateEffectRequest,
103 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, UpdateEffectError>,
104 >(
105 (effect_name, config,),
106 0x4e39e4b5e6279125,
107 fidl::encoding::DynamicFlags::empty(),
108 ___deadline,
109 )?;
110 Ok(_response.map(|x| x))
111 }
112}
113
114#[cfg(target_os = "fuchsia")]
115impl From<EffectsControllerSynchronousProxy> for zx::Handle {
116 fn from(value: EffectsControllerSynchronousProxy) -> Self {
117 value.into_channel().into()
118 }
119}
120
121#[cfg(target_os = "fuchsia")]
122impl From<fidl::Channel> for EffectsControllerSynchronousProxy {
123 fn from(value: fidl::Channel) -> Self {
124 Self::new(value)
125 }
126}
127
128#[derive(Debug, Clone)]
129pub struct EffectsControllerProxy {
130 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
131}
132
133impl fidl::endpoints::Proxy for EffectsControllerProxy {
134 type Protocol = EffectsControllerMarker;
135
136 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
137 Self::new(inner)
138 }
139
140 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
141 self.client.into_channel().map_err(|client| Self { client })
142 }
143
144 fn as_channel(&self) -> &::fidl::AsyncChannel {
145 self.client.as_channel()
146 }
147}
148
149impl EffectsControllerProxy {
150 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
152 let protocol_name =
153 <EffectsControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
154 Self { client: fidl::client::Client::new(channel, protocol_name) }
155 }
156
157 pub fn take_event_stream(&self) -> EffectsControllerEventStream {
163 EffectsControllerEventStream { event_receiver: self.client.take_event_receiver() }
164 }
165
166 pub fn r#update_effect(
184 &self,
185 mut effect_name: &str,
186 mut config: &str,
187 ) -> fidl::client::QueryResponseFut<
188 EffectsControllerUpdateEffectResult,
189 fidl::encoding::DefaultFuchsiaResourceDialect,
190 > {
191 EffectsControllerProxyInterface::r#update_effect(self, effect_name, config)
192 }
193}
194
195impl EffectsControllerProxyInterface for EffectsControllerProxy {
196 type UpdateEffectResponseFut = fidl::client::QueryResponseFut<
197 EffectsControllerUpdateEffectResult,
198 fidl::encoding::DefaultFuchsiaResourceDialect,
199 >;
200 fn r#update_effect(
201 &self,
202 mut effect_name: &str,
203 mut config: &str,
204 ) -> Self::UpdateEffectResponseFut {
205 fn _decode(
206 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
207 ) -> Result<EffectsControllerUpdateEffectResult, fidl::Error> {
208 let _response = fidl::client::decode_transaction_body::<
209 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, UpdateEffectError>,
210 fidl::encoding::DefaultFuchsiaResourceDialect,
211 0x4e39e4b5e6279125,
212 >(_buf?)?;
213 Ok(_response.map(|x| x))
214 }
215 self.client.send_query_and_decode::<
216 EffectsControllerUpdateEffectRequest,
217 EffectsControllerUpdateEffectResult,
218 >(
219 (effect_name, config,),
220 0x4e39e4b5e6279125,
221 fidl::encoding::DynamicFlags::empty(),
222 _decode,
223 )
224 }
225}
226
227pub struct EffectsControllerEventStream {
228 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
229}
230
231impl std::marker::Unpin for EffectsControllerEventStream {}
232
233impl futures::stream::FusedStream for EffectsControllerEventStream {
234 fn is_terminated(&self) -> bool {
235 self.event_receiver.is_terminated()
236 }
237}
238
239impl futures::Stream for EffectsControllerEventStream {
240 type Item = Result<EffectsControllerEvent, fidl::Error>;
241
242 fn poll_next(
243 mut self: std::pin::Pin<&mut Self>,
244 cx: &mut std::task::Context<'_>,
245 ) -> std::task::Poll<Option<Self::Item>> {
246 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
247 &mut self.event_receiver,
248 cx
249 )?) {
250 Some(buf) => std::task::Poll::Ready(Some(EffectsControllerEvent::decode(buf))),
251 None => std::task::Poll::Ready(None),
252 }
253 }
254}
255
256#[derive(Debug)]
257pub enum EffectsControllerEvent {}
258
259impl EffectsControllerEvent {
260 fn decode(
262 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
263 ) -> Result<EffectsControllerEvent, fidl::Error> {
264 let (bytes, _handles) = buf.split_mut();
265 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
266 debug_assert_eq!(tx_header.tx_id, 0);
267 match tx_header.ordinal {
268 _ => Err(fidl::Error::UnknownOrdinal {
269 ordinal: tx_header.ordinal,
270 protocol_name:
271 <EffectsControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
272 }),
273 }
274 }
275}
276
277pub struct EffectsControllerRequestStream {
279 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
280 is_terminated: bool,
281}
282
283impl std::marker::Unpin for EffectsControllerRequestStream {}
284
285impl futures::stream::FusedStream for EffectsControllerRequestStream {
286 fn is_terminated(&self) -> bool {
287 self.is_terminated
288 }
289}
290
291impl fidl::endpoints::RequestStream for EffectsControllerRequestStream {
292 type Protocol = EffectsControllerMarker;
293 type ControlHandle = EffectsControllerControlHandle;
294
295 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
296 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
297 }
298
299 fn control_handle(&self) -> Self::ControlHandle {
300 EffectsControllerControlHandle { inner: self.inner.clone() }
301 }
302
303 fn into_inner(
304 self,
305 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
306 {
307 (self.inner, self.is_terminated)
308 }
309
310 fn from_inner(
311 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
312 is_terminated: bool,
313 ) -> Self {
314 Self { inner, is_terminated }
315 }
316}
317
318impl futures::Stream for EffectsControllerRequestStream {
319 type Item = Result<EffectsControllerRequest, fidl::Error>;
320
321 fn poll_next(
322 mut self: std::pin::Pin<&mut Self>,
323 cx: &mut std::task::Context<'_>,
324 ) -> std::task::Poll<Option<Self::Item>> {
325 let this = &mut *self;
326 if this.inner.check_shutdown(cx) {
327 this.is_terminated = true;
328 return std::task::Poll::Ready(None);
329 }
330 if this.is_terminated {
331 panic!("polled EffectsControllerRequestStream after completion");
332 }
333 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
334 |bytes, handles| {
335 match this.inner.channel().read_etc(cx, bytes, handles) {
336 std::task::Poll::Ready(Ok(())) => {}
337 std::task::Poll::Pending => return std::task::Poll::Pending,
338 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
339 this.is_terminated = true;
340 return std::task::Poll::Ready(None);
341 }
342 std::task::Poll::Ready(Err(e)) => {
343 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
344 e.into(),
345 ))))
346 }
347 }
348
349 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
351
352 std::task::Poll::Ready(Some(match header.ordinal {
353 0x4e39e4b5e6279125 => {
354 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
355 let mut req = fidl::new_empty!(
356 EffectsControllerUpdateEffectRequest,
357 fidl::encoding::DefaultFuchsiaResourceDialect
358 );
359 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<EffectsControllerUpdateEffectRequest>(&header, _body_bytes, handles, &mut req)?;
360 let control_handle =
361 EffectsControllerControlHandle { inner: this.inner.clone() };
362 Ok(EffectsControllerRequest::UpdateEffect {
363 effect_name: req.effect_name,
364 config: req.config,
365
366 responder: EffectsControllerUpdateEffectResponder {
367 control_handle: std::mem::ManuallyDrop::new(control_handle),
368 tx_id: header.tx_id,
369 },
370 })
371 }
372 _ => Err(fidl::Error::UnknownOrdinal {
373 ordinal: header.ordinal,
374 protocol_name:
375 <EffectsControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
376 }),
377 }))
378 },
379 )
380 }
381}
382
383#[derive(Debug)]
384pub enum EffectsControllerRequest {
385 UpdateEffect {
403 effect_name: String,
404 config: String,
405 responder: EffectsControllerUpdateEffectResponder,
406 },
407}
408
409impl EffectsControllerRequest {
410 #[allow(irrefutable_let_patterns)]
411 pub fn into_update_effect(
412 self,
413 ) -> Option<(String, String, EffectsControllerUpdateEffectResponder)> {
414 if let EffectsControllerRequest::UpdateEffect { effect_name, config, responder } = self {
415 Some((effect_name, config, responder))
416 } else {
417 None
418 }
419 }
420
421 pub fn method_name(&self) -> &'static str {
423 match *self {
424 EffectsControllerRequest::UpdateEffect { .. } => "update_effect",
425 }
426 }
427}
428
429#[derive(Debug, Clone)]
430pub struct EffectsControllerControlHandle {
431 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
432}
433
434impl fidl::endpoints::ControlHandle for EffectsControllerControlHandle {
435 fn shutdown(&self) {
436 self.inner.shutdown()
437 }
438 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
439 self.inner.shutdown_with_epitaph(status)
440 }
441
442 fn is_closed(&self) -> bool {
443 self.inner.channel().is_closed()
444 }
445 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
446 self.inner.channel().on_closed()
447 }
448
449 #[cfg(target_os = "fuchsia")]
450 fn signal_peer(
451 &self,
452 clear_mask: zx::Signals,
453 set_mask: zx::Signals,
454 ) -> Result<(), zx_status::Status> {
455 use fidl::Peered;
456 self.inner.channel().signal_peer(clear_mask, set_mask)
457 }
458}
459
460impl EffectsControllerControlHandle {}
461
462#[must_use = "FIDL methods require a response to be sent"]
463#[derive(Debug)]
464pub struct EffectsControllerUpdateEffectResponder {
465 control_handle: std::mem::ManuallyDrop<EffectsControllerControlHandle>,
466 tx_id: u32,
467}
468
469impl std::ops::Drop for EffectsControllerUpdateEffectResponder {
473 fn drop(&mut self) {
474 self.control_handle.shutdown();
475 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
477 }
478}
479
480impl fidl::endpoints::Responder for EffectsControllerUpdateEffectResponder {
481 type ControlHandle = EffectsControllerControlHandle;
482
483 fn control_handle(&self) -> &EffectsControllerControlHandle {
484 &self.control_handle
485 }
486
487 fn drop_without_shutdown(mut self) {
488 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
490 std::mem::forget(self);
492 }
493}
494
495impl EffectsControllerUpdateEffectResponder {
496 pub fn send(self, mut result: Result<(), UpdateEffectError>) -> Result<(), fidl::Error> {
500 let _result = self.send_raw(result);
501 if _result.is_err() {
502 self.control_handle.shutdown();
503 }
504 self.drop_without_shutdown();
505 _result
506 }
507
508 pub fn send_no_shutdown_on_err(
510 self,
511 mut result: Result<(), UpdateEffectError>,
512 ) -> Result<(), fidl::Error> {
513 let _result = self.send_raw(result);
514 self.drop_without_shutdown();
515 _result
516 }
517
518 fn send_raw(&self, mut result: Result<(), UpdateEffectError>) -> Result<(), fidl::Error> {
519 self.control_handle.inner.send::<fidl::encoding::ResultType<
520 fidl::encoding::EmptyStruct,
521 UpdateEffectError,
522 >>(
523 result,
524 self.tx_id,
525 0x4e39e4b5e6279125,
526 fidl::encoding::DynamicFlags::empty(),
527 )
528 }
529}
530
531#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
532pub struct GainControlMarker;
533
534impl fidl::endpoints::ProtocolMarker for GainControlMarker {
535 type Proxy = GainControlProxy;
536 type RequestStream = GainControlRequestStream;
537 #[cfg(target_os = "fuchsia")]
538 type SynchronousProxy = GainControlSynchronousProxy;
539
540 const DEBUG_NAME: &'static str = "(anonymous) GainControl";
541}
542
543pub trait GainControlProxyInterface: Send + Sync {
544 fn r#set_gain(&self, gain_db: f32) -> Result<(), fidl::Error>;
545 fn r#set_gain_with_ramp(
546 &self,
547 gain_db: f32,
548 duration: i64,
549 ramp_type: RampType,
550 ) -> Result<(), fidl::Error>;
551 fn r#set_mute(&self, muted: bool) -> Result<(), fidl::Error>;
552}
553#[derive(Debug)]
554#[cfg(target_os = "fuchsia")]
555pub struct GainControlSynchronousProxy {
556 client: fidl::client::sync::Client,
557}
558
559#[cfg(target_os = "fuchsia")]
560impl fidl::endpoints::SynchronousProxy for GainControlSynchronousProxy {
561 type Proxy = GainControlProxy;
562 type Protocol = GainControlMarker;
563
564 fn from_channel(inner: fidl::Channel) -> Self {
565 Self::new(inner)
566 }
567
568 fn into_channel(self) -> fidl::Channel {
569 self.client.into_channel()
570 }
571
572 fn as_channel(&self) -> &fidl::Channel {
573 self.client.as_channel()
574 }
575}
576
577#[cfg(target_os = "fuchsia")]
578impl GainControlSynchronousProxy {
579 pub fn new(channel: fidl::Channel) -> Self {
580 let protocol_name = <GainControlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
581 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
582 }
583
584 pub fn into_channel(self) -> fidl::Channel {
585 self.client.into_channel()
586 }
587
588 pub fn wait_for_event(
591 &self,
592 deadline: zx::MonotonicInstant,
593 ) -> Result<GainControlEvent, fidl::Error> {
594 GainControlEvent::decode(self.client.wait_for_event(deadline)?)
595 }
596
597 pub fn r#set_gain(&self, mut gain_db: f32) -> Result<(), fidl::Error> {
599 self.client.send::<GainControlSetGainRequest>(
600 (gain_db,),
601 0x2fc070871d033f64,
602 fidl::encoding::DynamicFlags::empty(),
603 )
604 }
605
606 pub fn r#set_gain_with_ramp(
643 &self,
644 mut gain_db: f32,
645 mut duration: i64,
646 mut ramp_type: RampType,
647 ) -> Result<(), fidl::Error> {
648 self.client.send::<GainControlSetGainWithRampRequest>(
649 (gain_db, duration, ramp_type),
650 0x3a175b2d6979e8ea,
651 fidl::encoding::DynamicFlags::empty(),
652 )
653 }
654
655 pub fn r#set_mute(&self, mut muted: bool) -> Result<(), fidl::Error> {
658 self.client.send::<GainControlSetMuteRequest>(
659 (muted,),
660 0x5415723c1e31448,
661 fidl::encoding::DynamicFlags::empty(),
662 )
663 }
664}
665
666#[cfg(target_os = "fuchsia")]
667impl From<GainControlSynchronousProxy> for zx::Handle {
668 fn from(value: GainControlSynchronousProxy) -> Self {
669 value.into_channel().into()
670 }
671}
672
673#[cfg(target_os = "fuchsia")]
674impl From<fidl::Channel> for GainControlSynchronousProxy {
675 fn from(value: fidl::Channel) -> Self {
676 Self::new(value)
677 }
678}
679
680#[derive(Debug, Clone)]
681pub struct GainControlProxy {
682 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
683}
684
685impl fidl::endpoints::Proxy for GainControlProxy {
686 type Protocol = GainControlMarker;
687
688 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
689 Self::new(inner)
690 }
691
692 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
693 self.client.into_channel().map_err(|client| Self { client })
694 }
695
696 fn as_channel(&self) -> &::fidl::AsyncChannel {
697 self.client.as_channel()
698 }
699}
700
701impl GainControlProxy {
702 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
704 let protocol_name = <GainControlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
705 Self { client: fidl::client::Client::new(channel, protocol_name) }
706 }
707
708 pub fn take_event_stream(&self) -> GainControlEventStream {
714 GainControlEventStream { event_receiver: self.client.take_event_receiver() }
715 }
716
717 pub fn r#set_gain(&self, mut gain_db: f32) -> Result<(), fidl::Error> {
719 GainControlProxyInterface::r#set_gain(self, gain_db)
720 }
721
722 pub fn r#set_gain_with_ramp(
759 &self,
760 mut gain_db: f32,
761 mut duration: i64,
762 mut ramp_type: RampType,
763 ) -> Result<(), fidl::Error> {
764 GainControlProxyInterface::r#set_gain_with_ramp(self, gain_db, duration, ramp_type)
765 }
766
767 pub fn r#set_mute(&self, mut muted: bool) -> Result<(), fidl::Error> {
770 GainControlProxyInterface::r#set_mute(self, muted)
771 }
772}
773
774impl GainControlProxyInterface for GainControlProxy {
775 fn r#set_gain(&self, mut gain_db: f32) -> Result<(), fidl::Error> {
776 self.client.send::<GainControlSetGainRequest>(
777 (gain_db,),
778 0x2fc070871d033f64,
779 fidl::encoding::DynamicFlags::empty(),
780 )
781 }
782
783 fn r#set_gain_with_ramp(
784 &self,
785 mut gain_db: f32,
786 mut duration: i64,
787 mut ramp_type: RampType,
788 ) -> Result<(), fidl::Error> {
789 self.client.send::<GainControlSetGainWithRampRequest>(
790 (gain_db, duration, ramp_type),
791 0x3a175b2d6979e8ea,
792 fidl::encoding::DynamicFlags::empty(),
793 )
794 }
795
796 fn r#set_mute(&self, mut muted: bool) -> Result<(), fidl::Error> {
797 self.client.send::<GainControlSetMuteRequest>(
798 (muted,),
799 0x5415723c1e31448,
800 fidl::encoding::DynamicFlags::empty(),
801 )
802 }
803}
804
805pub struct GainControlEventStream {
806 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
807}
808
809impl std::marker::Unpin for GainControlEventStream {}
810
811impl futures::stream::FusedStream for GainControlEventStream {
812 fn is_terminated(&self) -> bool {
813 self.event_receiver.is_terminated()
814 }
815}
816
817impl futures::Stream for GainControlEventStream {
818 type Item = Result<GainControlEvent, fidl::Error>;
819
820 fn poll_next(
821 mut self: std::pin::Pin<&mut Self>,
822 cx: &mut std::task::Context<'_>,
823 ) -> std::task::Poll<Option<Self::Item>> {
824 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
825 &mut self.event_receiver,
826 cx
827 )?) {
828 Some(buf) => std::task::Poll::Ready(Some(GainControlEvent::decode(buf))),
829 None => std::task::Poll::Ready(None),
830 }
831 }
832}
833
834#[derive(Debug)]
835pub enum GainControlEvent {
836 OnGainMuteChanged { gain_db: f32, muted: bool },
837}
838
839impl GainControlEvent {
840 #[allow(irrefutable_let_patterns)]
841 pub fn into_on_gain_mute_changed(self) -> Option<(f32, bool)> {
842 if let GainControlEvent::OnGainMuteChanged { gain_db, muted } = self {
843 Some((gain_db, muted))
844 } else {
845 None
846 }
847 }
848
849 fn decode(
851 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
852 ) -> Result<GainControlEvent, fidl::Error> {
853 let (bytes, _handles) = buf.split_mut();
854 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
855 debug_assert_eq!(tx_header.tx_id, 0);
856 match tx_header.ordinal {
857 0x66d528cad4e0d753 => {
858 let mut out = fidl::new_empty!(
859 GainControlOnGainMuteChangedRequest,
860 fidl::encoding::DefaultFuchsiaResourceDialect
861 );
862 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<GainControlOnGainMuteChangedRequest>(&tx_header, _body_bytes, _handles, &mut out)?;
863 Ok((GainControlEvent::OnGainMuteChanged { gain_db: out.gain_db, muted: out.muted }))
864 }
865 _ => Err(fidl::Error::UnknownOrdinal {
866 ordinal: tx_header.ordinal,
867 protocol_name: <GainControlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
868 }),
869 }
870 }
871}
872
873pub struct GainControlRequestStream {
875 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
876 is_terminated: bool,
877}
878
879impl std::marker::Unpin for GainControlRequestStream {}
880
881impl futures::stream::FusedStream for GainControlRequestStream {
882 fn is_terminated(&self) -> bool {
883 self.is_terminated
884 }
885}
886
887impl fidl::endpoints::RequestStream for GainControlRequestStream {
888 type Protocol = GainControlMarker;
889 type ControlHandle = GainControlControlHandle;
890
891 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
892 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
893 }
894
895 fn control_handle(&self) -> Self::ControlHandle {
896 GainControlControlHandle { inner: self.inner.clone() }
897 }
898
899 fn into_inner(
900 self,
901 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
902 {
903 (self.inner, self.is_terminated)
904 }
905
906 fn from_inner(
907 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
908 is_terminated: bool,
909 ) -> Self {
910 Self { inner, is_terminated }
911 }
912}
913
914impl futures::Stream for GainControlRequestStream {
915 type Item = Result<GainControlRequest, fidl::Error>;
916
917 fn poll_next(
918 mut self: std::pin::Pin<&mut Self>,
919 cx: &mut std::task::Context<'_>,
920 ) -> std::task::Poll<Option<Self::Item>> {
921 let this = &mut *self;
922 if this.inner.check_shutdown(cx) {
923 this.is_terminated = true;
924 return std::task::Poll::Ready(None);
925 }
926 if this.is_terminated {
927 panic!("polled GainControlRequestStream after completion");
928 }
929 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
930 |bytes, handles| {
931 match this.inner.channel().read_etc(cx, bytes, handles) {
932 std::task::Poll::Ready(Ok(())) => {}
933 std::task::Poll::Pending => return std::task::Poll::Pending,
934 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
935 this.is_terminated = true;
936 return std::task::Poll::Ready(None);
937 }
938 std::task::Poll::Ready(Err(e)) => {
939 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
940 e.into(),
941 ))))
942 }
943 }
944
945 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
947
948 std::task::Poll::Ready(Some(match header.ordinal {
949 0x2fc070871d033f64 => {
950 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
951 let mut req = fidl::new_empty!(
952 GainControlSetGainRequest,
953 fidl::encoding::DefaultFuchsiaResourceDialect
954 );
955 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<GainControlSetGainRequest>(&header, _body_bytes, handles, &mut req)?;
956 let control_handle = GainControlControlHandle { inner: this.inner.clone() };
957 Ok(GainControlRequest::SetGain { gain_db: req.gain_db, control_handle })
958 }
959 0x3a175b2d6979e8ea => {
960 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
961 let mut req = fidl::new_empty!(
962 GainControlSetGainWithRampRequest,
963 fidl::encoding::DefaultFuchsiaResourceDialect
964 );
965 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<GainControlSetGainWithRampRequest>(&header, _body_bytes, handles, &mut req)?;
966 let control_handle = GainControlControlHandle { inner: this.inner.clone() };
967 Ok(GainControlRequest::SetGainWithRamp {
968 gain_db: req.gain_db,
969 duration: req.duration,
970 ramp_type: req.ramp_type,
971
972 control_handle,
973 })
974 }
975 0x5415723c1e31448 => {
976 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
977 let mut req = fidl::new_empty!(
978 GainControlSetMuteRequest,
979 fidl::encoding::DefaultFuchsiaResourceDialect
980 );
981 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<GainControlSetMuteRequest>(&header, _body_bytes, handles, &mut req)?;
982 let control_handle = GainControlControlHandle { inner: this.inner.clone() };
983 Ok(GainControlRequest::SetMute { muted: req.muted, control_handle })
984 }
985 _ => Err(fidl::Error::UnknownOrdinal {
986 ordinal: header.ordinal,
987 protocol_name:
988 <GainControlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
989 }),
990 }))
991 },
992 )
993 }
994}
995
996#[derive(Debug)]
1001pub enum GainControlRequest {
1002 SetGain { gain_db: f32, control_handle: GainControlControlHandle },
1004 SetGainWithRamp {
1041 gain_db: f32,
1042 duration: i64,
1043 ramp_type: RampType,
1044 control_handle: GainControlControlHandle,
1045 },
1046 SetMute { muted: bool, control_handle: GainControlControlHandle },
1049}
1050
1051impl GainControlRequest {
1052 #[allow(irrefutable_let_patterns)]
1053 pub fn into_set_gain(self) -> Option<(f32, GainControlControlHandle)> {
1054 if let GainControlRequest::SetGain { gain_db, control_handle } = self {
1055 Some((gain_db, control_handle))
1056 } else {
1057 None
1058 }
1059 }
1060
1061 #[allow(irrefutable_let_patterns)]
1062 pub fn into_set_gain_with_ramp(self) -> Option<(f32, i64, RampType, GainControlControlHandle)> {
1063 if let GainControlRequest::SetGainWithRamp {
1064 gain_db,
1065 duration,
1066 ramp_type,
1067 control_handle,
1068 } = self
1069 {
1070 Some((gain_db, duration, ramp_type, control_handle))
1071 } else {
1072 None
1073 }
1074 }
1075
1076 #[allow(irrefutable_let_patterns)]
1077 pub fn into_set_mute(self) -> Option<(bool, GainControlControlHandle)> {
1078 if let GainControlRequest::SetMute { muted, control_handle } = self {
1079 Some((muted, control_handle))
1080 } else {
1081 None
1082 }
1083 }
1084
1085 pub fn method_name(&self) -> &'static str {
1087 match *self {
1088 GainControlRequest::SetGain { .. } => "set_gain",
1089 GainControlRequest::SetGainWithRamp { .. } => "set_gain_with_ramp",
1090 GainControlRequest::SetMute { .. } => "set_mute",
1091 }
1092 }
1093}
1094
1095#[derive(Debug, Clone)]
1096pub struct GainControlControlHandle {
1097 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1098}
1099
1100impl fidl::endpoints::ControlHandle for GainControlControlHandle {
1101 fn shutdown(&self) {
1102 self.inner.shutdown()
1103 }
1104 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
1105 self.inner.shutdown_with_epitaph(status)
1106 }
1107
1108 fn is_closed(&self) -> bool {
1109 self.inner.channel().is_closed()
1110 }
1111 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
1112 self.inner.channel().on_closed()
1113 }
1114
1115 #[cfg(target_os = "fuchsia")]
1116 fn signal_peer(
1117 &self,
1118 clear_mask: zx::Signals,
1119 set_mask: zx::Signals,
1120 ) -> Result<(), zx_status::Status> {
1121 use fidl::Peered;
1122 self.inner.channel().signal_peer(clear_mask, set_mask)
1123 }
1124}
1125
1126impl GainControlControlHandle {
1127 pub fn send_on_gain_mute_changed(
1128 &self,
1129 mut gain_db: f32,
1130 mut muted: bool,
1131 ) -> Result<(), fidl::Error> {
1132 self.inner.send::<GainControlOnGainMuteChangedRequest>(
1133 (gain_db, muted),
1134 0,
1135 0x66d528cad4e0d753,
1136 fidl::encoding::DynamicFlags::empty(),
1137 )
1138 }
1139}
1140
1141#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
1142pub struct VolumeControlMarker;
1143
1144impl fidl::endpoints::ProtocolMarker for VolumeControlMarker {
1145 type Proxy = VolumeControlProxy;
1146 type RequestStream = VolumeControlRequestStream;
1147 #[cfg(target_os = "fuchsia")]
1148 type SynchronousProxy = VolumeControlSynchronousProxy;
1149
1150 const DEBUG_NAME: &'static str = "(anonymous) VolumeControl";
1151}
1152
1153pub trait VolumeControlProxyInterface: Send + Sync {
1154 fn r#set_volume(&self, volume: f32) -> Result<(), fidl::Error>;
1155 fn r#set_mute(&self, mute: bool) -> Result<(), fidl::Error>;
1156}
1157#[derive(Debug)]
1158#[cfg(target_os = "fuchsia")]
1159pub struct VolumeControlSynchronousProxy {
1160 client: fidl::client::sync::Client,
1161}
1162
1163#[cfg(target_os = "fuchsia")]
1164impl fidl::endpoints::SynchronousProxy for VolumeControlSynchronousProxy {
1165 type Proxy = VolumeControlProxy;
1166 type Protocol = VolumeControlMarker;
1167
1168 fn from_channel(inner: fidl::Channel) -> Self {
1169 Self::new(inner)
1170 }
1171
1172 fn into_channel(self) -> fidl::Channel {
1173 self.client.into_channel()
1174 }
1175
1176 fn as_channel(&self) -> &fidl::Channel {
1177 self.client.as_channel()
1178 }
1179}
1180
1181#[cfg(target_os = "fuchsia")]
1182impl VolumeControlSynchronousProxy {
1183 pub fn new(channel: fidl::Channel) -> Self {
1184 let protocol_name = <VolumeControlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
1185 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
1186 }
1187
1188 pub fn into_channel(self) -> fidl::Channel {
1189 self.client.into_channel()
1190 }
1191
1192 pub fn wait_for_event(
1195 &self,
1196 deadline: zx::MonotonicInstant,
1197 ) -> Result<VolumeControlEvent, fidl::Error> {
1198 VolumeControlEvent::decode(self.client.wait_for_event(deadline)?)
1199 }
1200
1201 pub fn r#set_volume(&self, mut volume: f32) -> Result<(), fidl::Error> {
1205 self.client.send::<VolumeControlSetVolumeRequest>(
1206 (volume,),
1207 0x6ff4231809a697da,
1208 fidl::encoding::DynamicFlags::empty(),
1209 )
1210 }
1211
1212 pub fn r#set_mute(&self, mut mute: bool) -> Result<(), fidl::Error> {
1217 self.client.send::<VolumeControlSetMuteRequest>(
1218 (mute,),
1219 0x50c10c28bba46425,
1220 fidl::encoding::DynamicFlags::empty(),
1221 )
1222 }
1223}
1224
1225#[cfg(target_os = "fuchsia")]
1226impl From<VolumeControlSynchronousProxy> for zx::Handle {
1227 fn from(value: VolumeControlSynchronousProxy) -> Self {
1228 value.into_channel().into()
1229 }
1230}
1231
1232#[cfg(target_os = "fuchsia")]
1233impl From<fidl::Channel> for VolumeControlSynchronousProxy {
1234 fn from(value: fidl::Channel) -> Self {
1235 Self::new(value)
1236 }
1237}
1238
1239#[derive(Debug, Clone)]
1240pub struct VolumeControlProxy {
1241 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
1242}
1243
1244impl fidl::endpoints::Proxy for VolumeControlProxy {
1245 type Protocol = VolumeControlMarker;
1246
1247 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
1248 Self::new(inner)
1249 }
1250
1251 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
1252 self.client.into_channel().map_err(|client| Self { client })
1253 }
1254
1255 fn as_channel(&self) -> &::fidl::AsyncChannel {
1256 self.client.as_channel()
1257 }
1258}
1259
1260impl VolumeControlProxy {
1261 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
1263 let protocol_name = <VolumeControlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
1264 Self { client: fidl::client::Client::new(channel, protocol_name) }
1265 }
1266
1267 pub fn take_event_stream(&self) -> VolumeControlEventStream {
1273 VolumeControlEventStream { event_receiver: self.client.take_event_receiver() }
1274 }
1275
1276 pub fn r#set_volume(&self, mut volume: f32) -> Result<(), fidl::Error> {
1280 VolumeControlProxyInterface::r#set_volume(self, volume)
1281 }
1282
1283 pub fn r#set_mute(&self, mut mute: bool) -> Result<(), fidl::Error> {
1288 VolumeControlProxyInterface::r#set_mute(self, mute)
1289 }
1290}
1291
1292impl VolumeControlProxyInterface for VolumeControlProxy {
1293 fn r#set_volume(&self, mut volume: f32) -> Result<(), fidl::Error> {
1294 self.client.send::<VolumeControlSetVolumeRequest>(
1295 (volume,),
1296 0x6ff4231809a697da,
1297 fidl::encoding::DynamicFlags::empty(),
1298 )
1299 }
1300
1301 fn r#set_mute(&self, mut mute: bool) -> Result<(), fidl::Error> {
1302 self.client.send::<VolumeControlSetMuteRequest>(
1303 (mute,),
1304 0x50c10c28bba46425,
1305 fidl::encoding::DynamicFlags::empty(),
1306 )
1307 }
1308}
1309
1310pub struct VolumeControlEventStream {
1311 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
1312}
1313
1314impl std::marker::Unpin for VolumeControlEventStream {}
1315
1316impl futures::stream::FusedStream for VolumeControlEventStream {
1317 fn is_terminated(&self) -> bool {
1318 self.event_receiver.is_terminated()
1319 }
1320}
1321
1322impl futures::Stream for VolumeControlEventStream {
1323 type Item = Result<VolumeControlEvent, fidl::Error>;
1324
1325 fn poll_next(
1326 mut self: std::pin::Pin<&mut Self>,
1327 cx: &mut std::task::Context<'_>,
1328 ) -> std::task::Poll<Option<Self::Item>> {
1329 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
1330 &mut self.event_receiver,
1331 cx
1332 )?) {
1333 Some(buf) => std::task::Poll::Ready(Some(VolumeControlEvent::decode(buf))),
1334 None => std::task::Poll::Ready(None),
1335 }
1336 }
1337}
1338
1339#[derive(Debug)]
1340pub enum VolumeControlEvent {
1341 OnVolumeMuteChanged { new_volume: f32, new_muted: bool },
1342}
1343
1344impl VolumeControlEvent {
1345 #[allow(irrefutable_let_patterns)]
1346 pub fn into_on_volume_mute_changed(self) -> Option<(f32, bool)> {
1347 if let VolumeControlEvent::OnVolumeMuteChanged { new_volume, new_muted } = self {
1348 Some((new_volume, new_muted))
1349 } else {
1350 None
1351 }
1352 }
1353
1354 fn decode(
1356 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
1357 ) -> Result<VolumeControlEvent, fidl::Error> {
1358 let (bytes, _handles) = buf.split_mut();
1359 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
1360 debug_assert_eq!(tx_header.tx_id, 0);
1361 match tx_header.ordinal {
1362 0x9cea352bd86c171 => {
1363 let mut out = fidl::new_empty!(
1364 VolumeControlOnVolumeMuteChangedRequest,
1365 fidl::encoding::DefaultFuchsiaResourceDialect
1366 );
1367 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<VolumeControlOnVolumeMuteChangedRequest>(&tx_header, _body_bytes, _handles, &mut out)?;
1368 Ok((VolumeControlEvent::OnVolumeMuteChanged {
1369 new_volume: out.new_volume,
1370 new_muted: out.new_muted,
1371 }))
1372 }
1373 _ => Err(fidl::Error::UnknownOrdinal {
1374 ordinal: tx_header.ordinal,
1375 protocol_name: <VolumeControlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
1376 }),
1377 }
1378 }
1379}
1380
1381pub struct VolumeControlRequestStream {
1383 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1384 is_terminated: bool,
1385}
1386
1387impl std::marker::Unpin for VolumeControlRequestStream {}
1388
1389impl futures::stream::FusedStream for VolumeControlRequestStream {
1390 fn is_terminated(&self) -> bool {
1391 self.is_terminated
1392 }
1393}
1394
1395impl fidl::endpoints::RequestStream for VolumeControlRequestStream {
1396 type Protocol = VolumeControlMarker;
1397 type ControlHandle = VolumeControlControlHandle;
1398
1399 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
1400 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
1401 }
1402
1403 fn control_handle(&self) -> Self::ControlHandle {
1404 VolumeControlControlHandle { inner: self.inner.clone() }
1405 }
1406
1407 fn into_inner(
1408 self,
1409 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
1410 {
1411 (self.inner, self.is_terminated)
1412 }
1413
1414 fn from_inner(
1415 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1416 is_terminated: bool,
1417 ) -> Self {
1418 Self { inner, is_terminated }
1419 }
1420}
1421
1422impl futures::Stream for VolumeControlRequestStream {
1423 type Item = Result<VolumeControlRequest, fidl::Error>;
1424
1425 fn poll_next(
1426 mut self: std::pin::Pin<&mut Self>,
1427 cx: &mut std::task::Context<'_>,
1428 ) -> std::task::Poll<Option<Self::Item>> {
1429 let this = &mut *self;
1430 if this.inner.check_shutdown(cx) {
1431 this.is_terminated = true;
1432 return std::task::Poll::Ready(None);
1433 }
1434 if this.is_terminated {
1435 panic!("polled VolumeControlRequestStream after completion");
1436 }
1437 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
1438 |bytes, handles| {
1439 match this.inner.channel().read_etc(cx, bytes, handles) {
1440 std::task::Poll::Ready(Ok(())) => {}
1441 std::task::Poll::Pending => return std::task::Poll::Pending,
1442 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
1443 this.is_terminated = true;
1444 return std::task::Poll::Ready(None);
1445 }
1446 std::task::Poll::Ready(Err(e)) => {
1447 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
1448 e.into(),
1449 ))))
1450 }
1451 }
1452
1453 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
1455
1456 std::task::Poll::Ready(Some(match header.ordinal {
1457 0x6ff4231809a697da => {
1458 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
1459 let mut req = fidl::new_empty!(
1460 VolumeControlSetVolumeRequest,
1461 fidl::encoding::DefaultFuchsiaResourceDialect
1462 );
1463 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<VolumeControlSetVolumeRequest>(&header, _body_bytes, handles, &mut req)?;
1464 let control_handle =
1465 VolumeControlControlHandle { inner: this.inner.clone() };
1466 Ok(VolumeControlRequest::SetVolume { volume: req.volume, control_handle })
1467 }
1468 0x50c10c28bba46425 => {
1469 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
1470 let mut req = fidl::new_empty!(
1471 VolumeControlSetMuteRequest,
1472 fidl::encoding::DefaultFuchsiaResourceDialect
1473 );
1474 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<VolumeControlSetMuteRequest>(&header, _body_bytes, handles, &mut req)?;
1475 let control_handle =
1476 VolumeControlControlHandle { inner: this.inner.clone() };
1477 Ok(VolumeControlRequest::SetMute { mute: req.mute, control_handle })
1478 }
1479 _ => Err(fidl::Error::UnknownOrdinal {
1480 ordinal: header.ordinal,
1481 protocol_name:
1482 <VolumeControlMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
1483 }),
1484 }))
1485 },
1486 )
1487 }
1488}
1489
1490#[derive(Debug)]
1492pub enum VolumeControlRequest {
1493 SetVolume { volume: f32, control_handle: VolumeControlControlHandle },
1497 SetMute { mute: bool, control_handle: VolumeControlControlHandle },
1502}
1503
1504impl VolumeControlRequest {
1505 #[allow(irrefutable_let_patterns)]
1506 pub fn into_set_volume(self) -> Option<(f32, VolumeControlControlHandle)> {
1507 if let VolumeControlRequest::SetVolume { volume, control_handle } = self {
1508 Some((volume, control_handle))
1509 } else {
1510 None
1511 }
1512 }
1513
1514 #[allow(irrefutable_let_patterns)]
1515 pub fn into_set_mute(self) -> Option<(bool, VolumeControlControlHandle)> {
1516 if let VolumeControlRequest::SetMute { mute, control_handle } = self {
1517 Some((mute, control_handle))
1518 } else {
1519 None
1520 }
1521 }
1522
1523 pub fn method_name(&self) -> &'static str {
1525 match *self {
1526 VolumeControlRequest::SetVolume { .. } => "set_volume",
1527 VolumeControlRequest::SetMute { .. } => "set_mute",
1528 }
1529 }
1530}
1531
1532#[derive(Debug, Clone)]
1533pub struct VolumeControlControlHandle {
1534 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1535}
1536
1537impl fidl::endpoints::ControlHandle for VolumeControlControlHandle {
1538 fn shutdown(&self) {
1539 self.inner.shutdown()
1540 }
1541 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
1542 self.inner.shutdown_with_epitaph(status)
1543 }
1544
1545 fn is_closed(&self) -> bool {
1546 self.inner.channel().is_closed()
1547 }
1548 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
1549 self.inner.channel().on_closed()
1550 }
1551
1552 #[cfg(target_os = "fuchsia")]
1553 fn signal_peer(
1554 &self,
1555 clear_mask: zx::Signals,
1556 set_mask: zx::Signals,
1557 ) -> Result<(), zx_status::Status> {
1558 use fidl::Peered;
1559 self.inner.channel().signal_peer(clear_mask, set_mask)
1560 }
1561}
1562
1563impl VolumeControlControlHandle {
1564 pub fn send_on_volume_mute_changed(
1565 &self,
1566 mut new_volume: f32,
1567 mut new_muted: bool,
1568 ) -> Result<(), fidl::Error> {
1569 self.inner.send::<VolumeControlOnVolumeMuteChangedRequest>(
1570 (new_volume, new_muted),
1571 0,
1572 0x9cea352bd86c171,
1573 fidl::encoding::DynamicFlags::empty(),
1574 )
1575 }
1576}
1577
1578mod internal {
1579 use super::*;
1580}