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_examples_calculator_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct CalculatorMarker;
16
17impl fidl::endpoints::ProtocolMarker for CalculatorMarker {
18 type Proxy = CalculatorProxy;
19 type RequestStream = CalculatorRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = CalculatorSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "fuchsia.examples.calculator.Calculator";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for CalculatorMarker {}
26
27pub trait CalculatorProxyInterface: Send + Sync {
28 type AddResponseFut: std::future::Future<Output = Result<f64, fidl::Error>> + Send;
29 fn r#add(&self, a: f64, b: f64) -> Self::AddResponseFut;
30 type SubtractResponseFut: std::future::Future<Output = Result<f64, fidl::Error>> + Send;
31 fn r#subtract(&self, a: f64, b: f64) -> Self::SubtractResponseFut;
32 type MultiplyResponseFut: std::future::Future<Output = Result<f64, fidl::Error>> + Send;
33 fn r#multiply(&self, a: f64, b: f64) -> Self::MultiplyResponseFut;
34 type DivideResponseFut: std::future::Future<Output = Result<f64, fidl::Error>> + Send;
35 fn r#divide(&self, dividend: f64, divisor: f64) -> Self::DivideResponseFut;
36 type PowResponseFut: std::future::Future<Output = Result<f64, fidl::Error>> + Send;
37 fn r#pow(&self, base: f64, exponent: f64) -> Self::PowResponseFut;
38}
39#[derive(Debug)]
40#[cfg(target_os = "fuchsia")]
41pub struct CalculatorSynchronousProxy {
42 client: fidl::client::sync::Client,
43}
44
45#[cfg(target_os = "fuchsia")]
46impl fidl::endpoints::SynchronousProxy for CalculatorSynchronousProxy {
47 type Proxy = CalculatorProxy;
48 type Protocol = CalculatorMarker;
49
50 fn from_channel(inner: fidl::Channel) -> Self {
51 Self::new(inner)
52 }
53
54 fn into_channel(self) -> fidl::Channel {
55 self.client.into_channel()
56 }
57
58 fn as_channel(&self) -> &fidl::Channel {
59 self.client.as_channel()
60 }
61}
62
63#[cfg(target_os = "fuchsia")]
64impl CalculatorSynchronousProxy {
65 pub fn new(channel: fidl::Channel) -> Self {
66 let protocol_name = <CalculatorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
67 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
68 }
69
70 pub fn into_channel(self) -> fidl::Channel {
71 self.client.into_channel()
72 }
73
74 pub fn wait_for_event(
77 &self,
78 deadline: zx::MonotonicInstant,
79 ) -> Result<CalculatorEvent, fidl::Error> {
80 CalculatorEvent::decode(self.client.wait_for_event(deadline)?)
81 }
82
83 pub fn r#add(
92 &self,
93 mut a: f64,
94 mut b: f64,
95 ___deadline: zx::MonotonicInstant,
96 ) -> Result<f64, fidl::Error> {
97 let _response = self.client.send_query::<CalculatorAddRequest, CalculatorAddResponse>(
98 (a, b),
99 0x5f2286171d9ff91e,
100 fidl::encoding::DynamicFlags::empty(),
101 ___deadline,
102 )?;
103 Ok(_response.sum)
104 }
105
106 pub fn r#subtract(
115 &self,
116 mut a: f64,
117 mut b: f64,
118 ___deadline: zx::MonotonicInstant,
119 ) -> Result<f64, fidl::Error> {
120 let _response =
121 self.client.send_query::<CalculatorSubtractRequest, CalculatorSubtractResponse>(
122 (a, b),
123 0x64ce8ff043420d78,
124 fidl::encoding::DynamicFlags::empty(),
125 ___deadline,
126 )?;
127 Ok(_response.difference)
128 }
129
130 pub fn r#multiply(
139 &self,
140 mut a: f64,
141 mut b: f64,
142 ___deadline: zx::MonotonicInstant,
143 ) -> Result<f64, fidl::Error> {
144 let _response =
145 self.client.send_query::<CalculatorMultiplyRequest, CalculatorMultiplyResponse>(
146 (a, b),
147 0x4d6fedd51609fc35,
148 fidl::encoding::DynamicFlags::empty(),
149 ___deadline,
150 )?;
151 Ok(_response.product)
152 }
153
154 pub fn r#divide(
163 &self,
164 mut dividend: f64,
165 mut divisor: f64,
166 ___deadline: zx::MonotonicInstant,
167 ) -> Result<f64, fidl::Error> {
168 let _response =
169 self.client.send_query::<CalculatorDivideRequest, CalculatorDivideResponse>(
170 (dividend, divisor),
171 0x4dc343d7222988ba,
172 fidl::encoding::DynamicFlags::empty(),
173 ___deadline,
174 )?;
175 Ok(_response.quotient)
176 }
177
178 pub fn r#pow(
189 &self,
190 mut base: f64,
191 mut exponent: f64,
192 ___deadline: zx::MonotonicInstant,
193 ) -> Result<f64, fidl::Error> {
194 let _response = self.client.send_query::<CalculatorPowRequest, CalculatorPowResponse>(
195 (base, exponent),
196 0x3467780dee7ba196,
197 fidl::encoding::DynamicFlags::empty(),
198 ___deadline,
199 )?;
200 Ok(_response.power)
201 }
202}
203
204#[cfg(target_os = "fuchsia")]
205impl From<CalculatorSynchronousProxy> for zx::Handle {
206 fn from(value: CalculatorSynchronousProxy) -> Self {
207 value.into_channel().into()
208 }
209}
210
211#[cfg(target_os = "fuchsia")]
212impl From<fidl::Channel> for CalculatorSynchronousProxy {
213 fn from(value: fidl::Channel) -> Self {
214 Self::new(value)
215 }
216}
217
218#[derive(Debug, Clone)]
219pub struct CalculatorProxy {
220 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
221}
222
223impl fidl::endpoints::Proxy for CalculatorProxy {
224 type Protocol = CalculatorMarker;
225
226 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
227 Self::new(inner)
228 }
229
230 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
231 self.client.into_channel().map_err(|client| Self { client })
232 }
233
234 fn as_channel(&self) -> &::fidl::AsyncChannel {
235 self.client.as_channel()
236 }
237}
238
239impl CalculatorProxy {
240 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
242 let protocol_name = <CalculatorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
243 Self { client: fidl::client::Client::new(channel, protocol_name) }
244 }
245
246 pub fn take_event_stream(&self) -> CalculatorEventStream {
252 CalculatorEventStream { event_receiver: self.client.take_event_receiver() }
253 }
254
255 pub fn r#add(
264 &self,
265 mut a: f64,
266 mut b: f64,
267 ) -> fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect> {
268 CalculatorProxyInterface::r#add(self, a, b)
269 }
270
271 pub fn r#subtract(
280 &self,
281 mut a: f64,
282 mut b: f64,
283 ) -> fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect> {
284 CalculatorProxyInterface::r#subtract(self, a, b)
285 }
286
287 pub fn r#multiply(
296 &self,
297 mut a: f64,
298 mut b: f64,
299 ) -> fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect> {
300 CalculatorProxyInterface::r#multiply(self, a, b)
301 }
302
303 pub fn r#divide(
312 &self,
313 mut dividend: f64,
314 mut divisor: f64,
315 ) -> fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect> {
316 CalculatorProxyInterface::r#divide(self, dividend, divisor)
317 }
318
319 pub fn r#pow(
330 &self,
331 mut base: f64,
332 mut exponent: f64,
333 ) -> fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect> {
334 CalculatorProxyInterface::r#pow(self, base, exponent)
335 }
336}
337
338impl CalculatorProxyInterface for CalculatorProxy {
339 type AddResponseFut =
340 fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect>;
341 fn r#add(&self, mut a: f64, mut b: f64) -> Self::AddResponseFut {
342 fn _decode(
343 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
344 ) -> Result<f64, fidl::Error> {
345 let _response = fidl::client::decode_transaction_body::<
346 CalculatorAddResponse,
347 fidl::encoding::DefaultFuchsiaResourceDialect,
348 0x5f2286171d9ff91e,
349 >(_buf?)?;
350 Ok(_response.sum)
351 }
352 self.client.send_query_and_decode::<CalculatorAddRequest, f64>(
353 (a, b),
354 0x5f2286171d9ff91e,
355 fidl::encoding::DynamicFlags::empty(),
356 _decode,
357 )
358 }
359
360 type SubtractResponseFut =
361 fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect>;
362 fn r#subtract(&self, mut a: f64, mut b: f64) -> Self::SubtractResponseFut {
363 fn _decode(
364 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
365 ) -> Result<f64, fidl::Error> {
366 let _response = fidl::client::decode_transaction_body::<
367 CalculatorSubtractResponse,
368 fidl::encoding::DefaultFuchsiaResourceDialect,
369 0x64ce8ff043420d78,
370 >(_buf?)?;
371 Ok(_response.difference)
372 }
373 self.client.send_query_and_decode::<CalculatorSubtractRequest, f64>(
374 (a, b),
375 0x64ce8ff043420d78,
376 fidl::encoding::DynamicFlags::empty(),
377 _decode,
378 )
379 }
380
381 type MultiplyResponseFut =
382 fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect>;
383 fn r#multiply(&self, mut a: f64, mut b: f64) -> Self::MultiplyResponseFut {
384 fn _decode(
385 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
386 ) -> Result<f64, fidl::Error> {
387 let _response = fidl::client::decode_transaction_body::<
388 CalculatorMultiplyResponse,
389 fidl::encoding::DefaultFuchsiaResourceDialect,
390 0x4d6fedd51609fc35,
391 >(_buf?)?;
392 Ok(_response.product)
393 }
394 self.client.send_query_and_decode::<CalculatorMultiplyRequest, f64>(
395 (a, b),
396 0x4d6fedd51609fc35,
397 fidl::encoding::DynamicFlags::empty(),
398 _decode,
399 )
400 }
401
402 type DivideResponseFut =
403 fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect>;
404 fn r#divide(&self, mut dividend: f64, mut divisor: f64) -> Self::DivideResponseFut {
405 fn _decode(
406 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
407 ) -> Result<f64, fidl::Error> {
408 let _response = fidl::client::decode_transaction_body::<
409 CalculatorDivideResponse,
410 fidl::encoding::DefaultFuchsiaResourceDialect,
411 0x4dc343d7222988ba,
412 >(_buf?)?;
413 Ok(_response.quotient)
414 }
415 self.client.send_query_and_decode::<CalculatorDivideRequest, f64>(
416 (dividend, divisor),
417 0x4dc343d7222988ba,
418 fidl::encoding::DynamicFlags::empty(),
419 _decode,
420 )
421 }
422
423 type PowResponseFut =
424 fidl::client::QueryResponseFut<f64, fidl::encoding::DefaultFuchsiaResourceDialect>;
425 fn r#pow(&self, mut base: f64, mut exponent: f64) -> Self::PowResponseFut {
426 fn _decode(
427 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
428 ) -> Result<f64, fidl::Error> {
429 let _response = fidl::client::decode_transaction_body::<
430 CalculatorPowResponse,
431 fidl::encoding::DefaultFuchsiaResourceDialect,
432 0x3467780dee7ba196,
433 >(_buf?)?;
434 Ok(_response.power)
435 }
436 self.client.send_query_and_decode::<CalculatorPowRequest, f64>(
437 (base, exponent),
438 0x3467780dee7ba196,
439 fidl::encoding::DynamicFlags::empty(),
440 _decode,
441 )
442 }
443}
444
445pub struct CalculatorEventStream {
446 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
447}
448
449impl std::marker::Unpin for CalculatorEventStream {}
450
451impl futures::stream::FusedStream for CalculatorEventStream {
452 fn is_terminated(&self) -> bool {
453 self.event_receiver.is_terminated()
454 }
455}
456
457impl futures::Stream for CalculatorEventStream {
458 type Item = Result<CalculatorEvent, fidl::Error>;
459
460 fn poll_next(
461 mut self: std::pin::Pin<&mut Self>,
462 cx: &mut std::task::Context<'_>,
463 ) -> std::task::Poll<Option<Self::Item>> {
464 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
465 &mut self.event_receiver,
466 cx
467 )?) {
468 Some(buf) => std::task::Poll::Ready(Some(CalculatorEvent::decode(buf))),
469 None => std::task::Poll::Ready(None),
470 }
471 }
472}
473
474#[derive(Debug)]
475pub enum CalculatorEvent {}
476
477impl CalculatorEvent {
478 fn decode(
480 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
481 ) -> Result<CalculatorEvent, fidl::Error> {
482 let (bytes, _handles) = buf.split_mut();
483 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
484 debug_assert_eq!(tx_header.tx_id, 0);
485 match tx_header.ordinal {
486 _ => Err(fidl::Error::UnknownOrdinal {
487 ordinal: tx_header.ordinal,
488 protocol_name: <CalculatorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
489 }),
490 }
491 }
492}
493
494pub struct CalculatorRequestStream {
496 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
497 is_terminated: bool,
498}
499
500impl std::marker::Unpin for CalculatorRequestStream {}
501
502impl futures::stream::FusedStream for CalculatorRequestStream {
503 fn is_terminated(&self) -> bool {
504 self.is_terminated
505 }
506}
507
508impl fidl::endpoints::RequestStream for CalculatorRequestStream {
509 type Protocol = CalculatorMarker;
510 type ControlHandle = CalculatorControlHandle;
511
512 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
513 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
514 }
515
516 fn control_handle(&self) -> Self::ControlHandle {
517 CalculatorControlHandle { inner: self.inner.clone() }
518 }
519
520 fn into_inner(
521 self,
522 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
523 {
524 (self.inner, self.is_terminated)
525 }
526
527 fn from_inner(
528 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
529 is_terminated: bool,
530 ) -> Self {
531 Self { inner, is_terminated }
532 }
533}
534
535impl futures::Stream for CalculatorRequestStream {
536 type Item = Result<CalculatorRequest, fidl::Error>;
537
538 fn poll_next(
539 mut self: std::pin::Pin<&mut Self>,
540 cx: &mut std::task::Context<'_>,
541 ) -> std::task::Poll<Option<Self::Item>> {
542 let this = &mut *self;
543 if this.inner.check_shutdown(cx) {
544 this.is_terminated = true;
545 return std::task::Poll::Ready(None);
546 }
547 if this.is_terminated {
548 panic!("polled CalculatorRequestStream after completion");
549 }
550 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
551 |bytes, handles| {
552 match this.inner.channel().read_etc(cx, bytes, handles) {
553 std::task::Poll::Ready(Ok(())) => {}
554 std::task::Poll::Pending => return std::task::Poll::Pending,
555 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
556 this.is_terminated = true;
557 return std::task::Poll::Ready(None);
558 }
559 std::task::Poll::Ready(Err(e)) => {
560 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
561 e.into(),
562 ))))
563 }
564 }
565
566 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
568
569 std::task::Poll::Ready(Some(match header.ordinal {
570 0x5f2286171d9ff91e => {
571 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
572 let mut req = fidl::new_empty!(
573 CalculatorAddRequest,
574 fidl::encoding::DefaultFuchsiaResourceDialect
575 );
576 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<CalculatorAddRequest>(&header, _body_bytes, handles, &mut req)?;
577 let control_handle = CalculatorControlHandle { inner: this.inner.clone() };
578 Ok(CalculatorRequest::Add {
579 a: req.a,
580 b: req.b,
581
582 responder: CalculatorAddResponder {
583 control_handle: std::mem::ManuallyDrop::new(control_handle),
584 tx_id: header.tx_id,
585 },
586 })
587 }
588 0x64ce8ff043420d78 => {
589 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
590 let mut req = fidl::new_empty!(
591 CalculatorSubtractRequest,
592 fidl::encoding::DefaultFuchsiaResourceDialect
593 );
594 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<CalculatorSubtractRequest>(&header, _body_bytes, handles, &mut req)?;
595 let control_handle = CalculatorControlHandle { inner: this.inner.clone() };
596 Ok(CalculatorRequest::Subtract {
597 a: req.a,
598 b: req.b,
599
600 responder: CalculatorSubtractResponder {
601 control_handle: std::mem::ManuallyDrop::new(control_handle),
602 tx_id: header.tx_id,
603 },
604 })
605 }
606 0x4d6fedd51609fc35 => {
607 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
608 let mut req = fidl::new_empty!(
609 CalculatorMultiplyRequest,
610 fidl::encoding::DefaultFuchsiaResourceDialect
611 );
612 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<CalculatorMultiplyRequest>(&header, _body_bytes, handles, &mut req)?;
613 let control_handle = CalculatorControlHandle { inner: this.inner.clone() };
614 Ok(CalculatorRequest::Multiply {
615 a: req.a,
616 b: req.b,
617
618 responder: CalculatorMultiplyResponder {
619 control_handle: std::mem::ManuallyDrop::new(control_handle),
620 tx_id: header.tx_id,
621 },
622 })
623 }
624 0x4dc343d7222988ba => {
625 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
626 let mut req = fidl::new_empty!(
627 CalculatorDivideRequest,
628 fidl::encoding::DefaultFuchsiaResourceDialect
629 );
630 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<CalculatorDivideRequest>(&header, _body_bytes, handles, &mut req)?;
631 let control_handle = CalculatorControlHandle { inner: this.inner.clone() };
632 Ok(CalculatorRequest::Divide {
633 dividend: req.dividend,
634 divisor: req.divisor,
635
636 responder: CalculatorDivideResponder {
637 control_handle: std::mem::ManuallyDrop::new(control_handle),
638 tx_id: header.tx_id,
639 },
640 })
641 }
642 0x3467780dee7ba196 => {
643 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
644 let mut req = fidl::new_empty!(
645 CalculatorPowRequest,
646 fidl::encoding::DefaultFuchsiaResourceDialect
647 );
648 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<CalculatorPowRequest>(&header, _body_bytes, handles, &mut req)?;
649 let control_handle = CalculatorControlHandle { inner: this.inner.clone() };
650 Ok(CalculatorRequest::Pow {
651 base: req.base,
652 exponent: req.exponent,
653
654 responder: CalculatorPowResponder {
655 control_handle: std::mem::ManuallyDrop::new(control_handle),
656 tx_id: header.tx_id,
657 },
658 })
659 }
660 _ => Err(fidl::Error::UnknownOrdinal {
661 ordinal: header.ordinal,
662 protocol_name:
663 <CalculatorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
664 }),
665 }))
666 },
667 )
668 }
669}
670
671#[derive(Debug)]
680pub enum CalculatorRequest {
681 Add { a: f64, b: f64, responder: CalculatorAddResponder },
690 Subtract { a: f64, b: f64, responder: CalculatorSubtractResponder },
699 Multiply { a: f64, b: f64, responder: CalculatorMultiplyResponder },
708 Divide { dividend: f64, divisor: f64, responder: CalculatorDivideResponder },
717 Pow { base: f64, exponent: f64, responder: CalculatorPowResponder },
728}
729
730impl CalculatorRequest {
731 #[allow(irrefutable_let_patterns)]
732 pub fn into_add(self) -> Option<(f64, f64, CalculatorAddResponder)> {
733 if let CalculatorRequest::Add { a, b, responder } = self {
734 Some((a, b, responder))
735 } else {
736 None
737 }
738 }
739
740 #[allow(irrefutable_let_patterns)]
741 pub fn into_subtract(self) -> Option<(f64, f64, CalculatorSubtractResponder)> {
742 if let CalculatorRequest::Subtract { a, b, responder } = self {
743 Some((a, b, responder))
744 } else {
745 None
746 }
747 }
748
749 #[allow(irrefutable_let_patterns)]
750 pub fn into_multiply(self) -> Option<(f64, f64, CalculatorMultiplyResponder)> {
751 if let CalculatorRequest::Multiply { a, b, responder } = self {
752 Some((a, b, responder))
753 } else {
754 None
755 }
756 }
757
758 #[allow(irrefutable_let_patterns)]
759 pub fn into_divide(self) -> Option<(f64, f64, CalculatorDivideResponder)> {
760 if let CalculatorRequest::Divide { dividend, divisor, responder } = self {
761 Some((dividend, divisor, responder))
762 } else {
763 None
764 }
765 }
766
767 #[allow(irrefutable_let_patterns)]
768 pub fn into_pow(self) -> Option<(f64, f64, CalculatorPowResponder)> {
769 if let CalculatorRequest::Pow { base, exponent, responder } = self {
770 Some((base, exponent, responder))
771 } else {
772 None
773 }
774 }
775
776 pub fn method_name(&self) -> &'static str {
778 match *self {
779 CalculatorRequest::Add { .. } => "add",
780 CalculatorRequest::Subtract { .. } => "subtract",
781 CalculatorRequest::Multiply { .. } => "multiply",
782 CalculatorRequest::Divide { .. } => "divide",
783 CalculatorRequest::Pow { .. } => "pow",
784 }
785 }
786}
787
788#[derive(Debug, Clone)]
789pub struct CalculatorControlHandle {
790 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
791}
792
793impl fidl::endpoints::ControlHandle for CalculatorControlHandle {
794 fn shutdown(&self) {
795 self.inner.shutdown()
796 }
797 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
798 self.inner.shutdown_with_epitaph(status)
799 }
800
801 fn is_closed(&self) -> bool {
802 self.inner.channel().is_closed()
803 }
804 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
805 self.inner.channel().on_closed()
806 }
807
808 #[cfg(target_os = "fuchsia")]
809 fn signal_peer(
810 &self,
811 clear_mask: zx::Signals,
812 set_mask: zx::Signals,
813 ) -> Result<(), zx_status::Status> {
814 use fidl::Peered;
815 self.inner.channel().signal_peer(clear_mask, set_mask)
816 }
817}
818
819impl CalculatorControlHandle {}
820
821#[must_use = "FIDL methods require a response to be sent"]
822#[derive(Debug)]
823pub struct CalculatorAddResponder {
824 control_handle: std::mem::ManuallyDrop<CalculatorControlHandle>,
825 tx_id: u32,
826}
827
828impl std::ops::Drop for CalculatorAddResponder {
832 fn drop(&mut self) {
833 self.control_handle.shutdown();
834 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
836 }
837}
838
839impl fidl::endpoints::Responder for CalculatorAddResponder {
840 type ControlHandle = CalculatorControlHandle;
841
842 fn control_handle(&self) -> &CalculatorControlHandle {
843 &self.control_handle
844 }
845
846 fn drop_without_shutdown(mut self) {
847 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
849 std::mem::forget(self);
851 }
852}
853
854impl CalculatorAddResponder {
855 pub fn send(self, mut sum: f64) -> Result<(), fidl::Error> {
859 let _result = self.send_raw(sum);
860 if _result.is_err() {
861 self.control_handle.shutdown();
862 }
863 self.drop_without_shutdown();
864 _result
865 }
866
867 pub fn send_no_shutdown_on_err(self, mut sum: f64) -> Result<(), fidl::Error> {
869 let _result = self.send_raw(sum);
870 self.drop_without_shutdown();
871 _result
872 }
873
874 fn send_raw(&self, mut sum: f64) -> Result<(), fidl::Error> {
875 self.control_handle.inner.send::<CalculatorAddResponse>(
876 (sum,),
877 self.tx_id,
878 0x5f2286171d9ff91e,
879 fidl::encoding::DynamicFlags::empty(),
880 )
881 }
882}
883
884#[must_use = "FIDL methods require a response to be sent"]
885#[derive(Debug)]
886pub struct CalculatorSubtractResponder {
887 control_handle: std::mem::ManuallyDrop<CalculatorControlHandle>,
888 tx_id: u32,
889}
890
891impl std::ops::Drop for CalculatorSubtractResponder {
895 fn drop(&mut self) {
896 self.control_handle.shutdown();
897 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
899 }
900}
901
902impl fidl::endpoints::Responder for CalculatorSubtractResponder {
903 type ControlHandle = CalculatorControlHandle;
904
905 fn control_handle(&self) -> &CalculatorControlHandle {
906 &self.control_handle
907 }
908
909 fn drop_without_shutdown(mut self) {
910 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
912 std::mem::forget(self);
914 }
915}
916
917impl CalculatorSubtractResponder {
918 pub fn send(self, mut difference: f64) -> Result<(), fidl::Error> {
922 let _result = self.send_raw(difference);
923 if _result.is_err() {
924 self.control_handle.shutdown();
925 }
926 self.drop_without_shutdown();
927 _result
928 }
929
930 pub fn send_no_shutdown_on_err(self, mut difference: f64) -> Result<(), fidl::Error> {
932 let _result = self.send_raw(difference);
933 self.drop_without_shutdown();
934 _result
935 }
936
937 fn send_raw(&self, mut difference: f64) -> Result<(), fidl::Error> {
938 self.control_handle.inner.send::<CalculatorSubtractResponse>(
939 (difference,),
940 self.tx_id,
941 0x64ce8ff043420d78,
942 fidl::encoding::DynamicFlags::empty(),
943 )
944 }
945}
946
947#[must_use = "FIDL methods require a response to be sent"]
948#[derive(Debug)]
949pub struct CalculatorMultiplyResponder {
950 control_handle: std::mem::ManuallyDrop<CalculatorControlHandle>,
951 tx_id: u32,
952}
953
954impl std::ops::Drop for CalculatorMultiplyResponder {
958 fn drop(&mut self) {
959 self.control_handle.shutdown();
960 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
962 }
963}
964
965impl fidl::endpoints::Responder for CalculatorMultiplyResponder {
966 type ControlHandle = CalculatorControlHandle;
967
968 fn control_handle(&self) -> &CalculatorControlHandle {
969 &self.control_handle
970 }
971
972 fn drop_without_shutdown(mut self) {
973 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
975 std::mem::forget(self);
977 }
978}
979
980impl CalculatorMultiplyResponder {
981 pub fn send(self, mut product: f64) -> Result<(), fidl::Error> {
985 let _result = self.send_raw(product);
986 if _result.is_err() {
987 self.control_handle.shutdown();
988 }
989 self.drop_without_shutdown();
990 _result
991 }
992
993 pub fn send_no_shutdown_on_err(self, mut product: f64) -> Result<(), fidl::Error> {
995 let _result = self.send_raw(product);
996 self.drop_without_shutdown();
997 _result
998 }
999
1000 fn send_raw(&self, mut product: f64) -> Result<(), fidl::Error> {
1001 self.control_handle.inner.send::<CalculatorMultiplyResponse>(
1002 (product,),
1003 self.tx_id,
1004 0x4d6fedd51609fc35,
1005 fidl::encoding::DynamicFlags::empty(),
1006 )
1007 }
1008}
1009
1010#[must_use = "FIDL methods require a response to be sent"]
1011#[derive(Debug)]
1012pub struct CalculatorDivideResponder {
1013 control_handle: std::mem::ManuallyDrop<CalculatorControlHandle>,
1014 tx_id: u32,
1015}
1016
1017impl std::ops::Drop for CalculatorDivideResponder {
1021 fn drop(&mut self) {
1022 self.control_handle.shutdown();
1023 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1025 }
1026}
1027
1028impl fidl::endpoints::Responder for CalculatorDivideResponder {
1029 type ControlHandle = CalculatorControlHandle;
1030
1031 fn control_handle(&self) -> &CalculatorControlHandle {
1032 &self.control_handle
1033 }
1034
1035 fn drop_without_shutdown(mut self) {
1036 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1038 std::mem::forget(self);
1040 }
1041}
1042
1043impl CalculatorDivideResponder {
1044 pub fn send(self, mut quotient: f64) -> Result<(), fidl::Error> {
1048 let _result = self.send_raw(quotient);
1049 if _result.is_err() {
1050 self.control_handle.shutdown();
1051 }
1052 self.drop_without_shutdown();
1053 _result
1054 }
1055
1056 pub fn send_no_shutdown_on_err(self, mut quotient: f64) -> Result<(), fidl::Error> {
1058 let _result = self.send_raw(quotient);
1059 self.drop_without_shutdown();
1060 _result
1061 }
1062
1063 fn send_raw(&self, mut quotient: f64) -> Result<(), fidl::Error> {
1064 self.control_handle.inner.send::<CalculatorDivideResponse>(
1065 (quotient,),
1066 self.tx_id,
1067 0x4dc343d7222988ba,
1068 fidl::encoding::DynamicFlags::empty(),
1069 )
1070 }
1071}
1072
1073#[must_use = "FIDL methods require a response to be sent"]
1074#[derive(Debug)]
1075pub struct CalculatorPowResponder {
1076 control_handle: std::mem::ManuallyDrop<CalculatorControlHandle>,
1077 tx_id: u32,
1078}
1079
1080impl std::ops::Drop for CalculatorPowResponder {
1084 fn drop(&mut self) {
1085 self.control_handle.shutdown();
1086 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1088 }
1089}
1090
1091impl fidl::endpoints::Responder for CalculatorPowResponder {
1092 type ControlHandle = CalculatorControlHandle;
1093
1094 fn control_handle(&self) -> &CalculatorControlHandle {
1095 &self.control_handle
1096 }
1097
1098 fn drop_without_shutdown(mut self) {
1099 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
1101 std::mem::forget(self);
1103 }
1104}
1105
1106impl CalculatorPowResponder {
1107 pub fn send(self, mut power: f64) -> Result<(), fidl::Error> {
1111 let _result = self.send_raw(power);
1112 if _result.is_err() {
1113 self.control_handle.shutdown();
1114 }
1115 self.drop_without_shutdown();
1116 _result
1117 }
1118
1119 pub fn send_no_shutdown_on_err(self, mut power: f64) -> Result<(), fidl::Error> {
1121 let _result = self.send_raw(power);
1122 self.drop_without_shutdown();
1123 _result
1124 }
1125
1126 fn send_raw(&self, mut power: f64) -> Result<(), fidl::Error> {
1127 self.control_handle.inner.send::<CalculatorPowResponse>(
1128 (power,),
1129 self.tx_id,
1130 0x3467780dee7ba196,
1131 fidl::encoding::DynamicFlags::empty(),
1132 )
1133 }
1134}
1135
1136mod internal {
1137 use super::*;
1138}