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_power_metrics_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct RecorderMarker;
16
17impl fidl::endpoints::ProtocolMarker for RecorderMarker {
18 type Proxy = RecorderProxy;
19 type RequestStream = RecorderRequestStream;
20 #[cfg(target_os = "fuchsia")]
21 type SynchronousProxy = RecorderSynchronousProxy;
22
23 const DEBUG_NAME: &'static str = "fuchsia.power.metrics.Recorder";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for RecorderMarker {}
26pub type RecorderStartLoggingResult = Result<(), RecorderError>;
27pub type RecorderStartLoggingForeverResult = Result<(), RecorderError>;
28
29pub trait RecorderProxyInterface: Send + Sync {
30 type StartLoggingResponseFut: std::future::Future<Output = Result<RecorderStartLoggingResult, fidl::Error>>
31 + Send;
32 fn r#start_logging(
33 &self,
34 client_id: &str,
35 metrics: &[Metric],
36 duration_ms: u32,
37 output_samples_to_syslog: bool,
38 output_stats_to_syslog: bool,
39 ) -> Self::StartLoggingResponseFut;
40 type StartLoggingForeverResponseFut: std::future::Future<Output = Result<RecorderStartLoggingForeverResult, fidl::Error>>
41 + Send;
42 fn r#start_logging_forever(
43 &self,
44 client_id: &str,
45 metrics: &[Metric],
46 output_samples_to_syslog: bool,
47 output_stats_to_syslog: bool,
48 ) -> Self::StartLoggingForeverResponseFut;
49 type StopLoggingResponseFut: std::future::Future<Output = Result<bool, fidl::Error>> + Send;
50 fn r#stop_logging(&self, client_id: &str) -> Self::StopLoggingResponseFut;
51}
52#[derive(Debug)]
53#[cfg(target_os = "fuchsia")]
54pub struct RecorderSynchronousProxy {
55 client: fidl::client::sync::Client,
56}
57
58#[cfg(target_os = "fuchsia")]
59impl fidl::endpoints::SynchronousProxy for RecorderSynchronousProxy {
60 type Proxy = RecorderProxy;
61 type Protocol = RecorderMarker;
62
63 fn from_channel(inner: fidl::Channel) -> Self {
64 Self::new(inner)
65 }
66
67 fn into_channel(self) -> fidl::Channel {
68 self.client.into_channel()
69 }
70
71 fn as_channel(&self) -> &fidl::Channel {
72 self.client.as_channel()
73 }
74}
75
76#[cfg(target_os = "fuchsia")]
77impl RecorderSynchronousProxy {
78 pub fn new(channel: fidl::Channel) -> Self {
79 let protocol_name = <RecorderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
80 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
81 }
82
83 pub fn into_channel(self) -> fidl::Channel {
84 self.client.into_channel()
85 }
86
87 pub fn wait_for_event(
90 &self,
91 deadline: zx::MonotonicInstant,
92 ) -> Result<RecorderEvent, fidl::Error> {
93 RecorderEvent::decode(self.client.wait_for_event(deadline)?)
94 }
95
96 pub fn r#start_logging(
117 &self,
118 mut client_id: &str,
119 mut metrics: &[Metric],
120 mut duration_ms: u32,
121 mut output_samples_to_syslog: bool,
122 mut output_stats_to_syslog: bool,
123 ___deadline: zx::MonotonicInstant,
124 ) -> Result<RecorderStartLoggingResult, fidl::Error> {
125 let _response = self.client.send_query::<
126 RecorderStartLoggingRequest,
127 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, RecorderError>,
128 >(
129 (client_id, metrics, duration_ms, output_samples_to_syslog, output_stats_to_syslog,),
130 0x40e4e1a9c6c42bd2,
131 fidl::encoding::DynamicFlags::empty(),
132 ___deadline,
133 )?;
134 Ok(_response.map(|x| x))
135 }
136
137 pub fn r#start_logging_forever(
153 &self,
154 mut client_id: &str,
155 mut metrics: &[Metric],
156 mut output_samples_to_syslog: bool,
157 mut output_stats_to_syslog: bool,
158 ___deadline: zx::MonotonicInstant,
159 ) -> Result<RecorderStartLoggingForeverResult, fidl::Error> {
160 let _response = self.client.send_query::<
161 RecorderStartLoggingForeverRequest,
162 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, RecorderError>,
163 >(
164 (client_id, metrics, output_samples_to_syslog, output_stats_to_syslog,),
165 0x37b2675fdc61ff94,
166 fidl::encoding::DynamicFlags::empty(),
167 ___deadline,
168 )?;
169 Ok(_response.map(|x| x))
170 }
171
172 pub fn r#stop_logging(
179 &self,
180 mut client_id: &str,
181 ___deadline: zx::MonotonicInstant,
182 ) -> Result<bool, fidl::Error> {
183 let _response =
184 self.client.send_query::<RecorderStopLoggingRequest, RecorderStopLoggingResponse>(
185 (client_id,),
186 0x615d67a4d94d4732,
187 fidl::encoding::DynamicFlags::empty(),
188 ___deadline,
189 )?;
190 Ok(_response.stopped)
191 }
192}
193
194#[cfg(target_os = "fuchsia")]
195impl From<RecorderSynchronousProxy> for zx::Handle {
196 fn from(value: RecorderSynchronousProxy) -> Self {
197 value.into_channel().into()
198 }
199}
200
201#[cfg(target_os = "fuchsia")]
202impl From<fidl::Channel> for RecorderSynchronousProxy {
203 fn from(value: fidl::Channel) -> Self {
204 Self::new(value)
205 }
206}
207
208#[derive(Debug, Clone)]
209pub struct RecorderProxy {
210 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
211}
212
213impl fidl::endpoints::Proxy for RecorderProxy {
214 type Protocol = RecorderMarker;
215
216 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
217 Self::new(inner)
218 }
219
220 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
221 self.client.into_channel().map_err(|client| Self { client })
222 }
223
224 fn as_channel(&self) -> &::fidl::AsyncChannel {
225 self.client.as_channel()
226 }
227}
228
229impl RecorderProxy {
230 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
232 let protocol_name = <RecorderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
233 Self { client: fidl::client::Client::new(channel, protocol_name) }
234 }
235
236 pub fn take_event_stream(&self) -> RecorderEventStream {
242 RecorderEventStream { event_receiver: self.client.take_event_receiver() }
243 }
244
245 pub fn r#start_logging(
266 &self,
267 mut client_id: &str,
268 mut metrics: &[Metric],
269 mut duration_ms: u32,
270 mut output_samples_to_syslog: bool,
271 mut output_stats_to_syslog: bool,
272 ) -> fidl::client::QueryResponseFut<
273 RecorderStartLoggingResult,
274 fidl::encoding::DefaultFuchsiaResourceDialect,
275 > {
276 RecorderProxyInterface::r#start_logging(
277 self,
278 client_id,
279 metrics,
280 duration_ms,
281 output_samples_to_syslog,
282 output_stats_to_syslog,
283 )
284 }
285
286 pub fn r#start_logging_forever(
302 &self,
303 mut client_id: &str,
304 mut metrics: &[Metric],
305 mut output_samples_to_syslog: bool,
306 mut output_stats_to_syslog: bool,
307 ) -> fidl::client::QueryResponseFut<
308 RecorderStartLoggingForeverResult,
309 fidl::encoding::DefaultFuchsiaResourceDialect,
310 > {
311 RecorderProxyInterface::r#start_logging_forever(
312 self,
313 client_id,
314 metrics,
315 output_samples_to_syslog,
316 output_stats_to_syslog,
317 )
318 }
319
320 pub fn r#stop_logging(
327 &self,
328 mut client_id: &str,
329 ) -> fidl::client::QueryResponseFut<bool, fidl::encoding::DefaultFuchsiaResourceDialect> {
330 RecorderProxyInterface::r#stop_logging(self, client_id)
331 }
332}
333
334impl RecorderProxyInterface for RecorderProxy {
335 type StartLoggingResponseFut = fidl::client::QueryResponseFut<
336 RecorderStartLoggingResult,
337 fidl::encoding::DefaultFuchsiaResourceDialect,
338 >;
339 fn r#start_logging(
340 &self,
341 mut client_id: &str,
342 mut metrics: &[Metric],
343 mut duration_ms: u32,
344 mut output_samples_to_syslog: bool,
345 mut output_stats_to_syslog: bool,
346 ) -> Self::StartLoggingResponseFut {
347 fn _decode(
348 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
349 ) -> Result<RecorderStartLoggingResult, fidl::Error> {
350 let _response = fidl::client::decode_transaction_body::<
351 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, RecorderError>,
352 fidl::encoding::DefaultFuchsiaResourceDialect,
353 0x40e4e1a9c6c42bd2,
354 >(_buf?)?;
355 Ok(_response.map(|x| x))
356 }
357 self.client
358 .send_query_and_decode::<RecorderStartLoggingRequest, RecorderStartLoggingResult>(
359 (client_id, metrics, duration_ms, output_samples_to_syslog, output_stats_to_syslog),
360 0x40e4e1a9c6c42bd2,
361 fidl::encoding::DynamicFlags::empty(),
362 _decode,
363 )
364 }
365
366 type StartLoggingForeverResponseFut = fidl::client::QueryResponseFut<
367 RecorderStartLoggingForeverResult,
368 fidl::encoding::DefaultFuchsiaResourceDialect,
369 >;
370 fn r#start_logging_forever(
371 &self,
372 mut client_id: &str,
373 mut metrics: &[Metric],
374 mut output_samples_to_syslog: bool,
375 mut output_stats_to_syslog: bool,
376 ) -> Self::StartLoggingForeverResponseFut {
377 fn _decode(
378 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
379 ) -> Result<RecorderStartLoggingForeverResult, fidl::Error> {
380 let _response = fidl::client::decode_transaction_body::<
381 fidl::encoding::ResultType<fidl::encoding::EmptyStruct, RecorderError>,
382 fidl::encoding::DefaultFuchsiaResourceDialect,
383 0x37b2675fdc61ff94,
384 >(_buf?)?;
385 Ok(_response.map(|x| x))
386 }
387 self.client.send_query_and_decode::<
388 RecorderStartLoggingForeverRequest,
389 RecorderStartLoggingForeverResult,
390 >(
391 (client_id, metrics, output_samples_to_syslog, output_stats_to_syslog,),
392 0x37b2675fdc61ff94,
393 fidl::encoding::DynamicFlags::empty(),
394 _decode,
395 )
396 }
397
398 type StopLoggingResponseFut =
399 fidl::client::QueryResponseFut<bool, fidl::encoding::DefaultFuchsiaResourceDialect>;
400 fn r#stop_logging(&self, mut client_id: &str) -> Self::StopLoggingResponseFut {
401 fn _decode(
402 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
403 ) -> Result<bool, fidl::Error> {
404 let _response = fidl::client::decode_transaction_body::<
405 RecorderStopLoggingResponse,
406 fidl::encoding::DefaultFuchsiaResourceDialect,
407 0x615d67a4d94d4732,
408 >(_buf?)?;
409 Ok(_response.stopped)
410 }
411 self.client.send_query_and_decode::<RecorderStopLoggingRequest, bool>(
412 (client_id,),
413 0x615d67a4d94d4732,
414 fidl::encoding::DynamicFlags::empty(),
415 _decode,
416 )
417 }
418}
419
420pub struct RecorderEventStream {
421 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
422}
423
424impl std::marker::Unpin for RecorderEventStream {}
425
426impl futures::stream::FusedStream for RecorderEventStream {
427 fn is_terminated(&self) -> bool {
428 self.event_receiver.is_terminated()
429 }
430}
431
432impl futures::Stream for RecorderEventStream {
433 type Item = Result<RecorderEvent, fidl::Error>;
434
435 fn poll_next(
436 mut self: std::pin::Pin<&mut Self>,
437 cx: &mut std::task::Context<'_>,
438 ) -> std::task::Poll<Option<Self::Item>> {
439 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
440 &mut self.event_receiver,
441 cx
442 )?) {
443 Some(buf) => std::task::Poll::Ready(Some(RecorderEvent::decode(buf))),
444 None => std::task::Poll::Ready(None),
445 }
446 }
447}
448
449#[derive(Debug)]
450pub enum RecorderEvent {}
451
452impl RecorderEvent {
453 fn decode(
455 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
456 ) -> Result<RecorderEvent, fidl::Error> {
457 let (bytes, _handles) = buf.split_mut();
458 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
459 debug_assert_eq!(tx_header.tx_id, 0);
460 match tx_header.ordinal {
461 _ => Err(fidl::Error::UnknownOrdinal {
462 ordinal: tx_header.ordinal,
463 protocol_name: <RecorderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
464 }),
465 }
466 }
467}
468
469pub struct RecorderRequestStream {
471 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
472 is_terminated: bool,
473}
474
475impl std::marker::Unpin for RecorderRequestStream {}
476
477impl futures::stream::FusedStream for RecorderRequestStream {
478 fn is_terminated(&self) -> bool {
479 self.is_terminated
480 }
481}
482
483impl fidl::endpoints::RequestStream for RecorderRequestStream {
484 type Protocol = RecorderMarker;
485 type ControlHandle = RecorderControlHandle;
486
487 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
488 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
489 }
490
491 fn control_handle(&self) -> Self::ControlHandle {
492 RecorderControlHandle { inner: self.inner.clone() }
493 }
494
495 fn into_inner(
496 self,
497 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
498 {
499 (self.inner, self.is_terminated)
500 }
501
502 fn from_inner(
503 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
504 is_terminated: bool,
505 ) -> Self {
506 Self { inner, is_terminated }
507 }
508}
509
510impl futures::Stream for RecorderRequestStream {
511 type Item = Result<RecorderRequest, fidl::Error>;
512
513 fn poll_next(
514 mut self: std::pin::Pin<&mut Self>,
515 cx: &mut std::task::Context<'_>,
516 ) -> std::task::Poll<Option<Self::Item>> {
517 let this = &mut *self;
518 if this.inner.check_shutdown(cx) {
519 this.is_terminated = true;
520 return std::task::Poll::Ready(None);
521 }
522 if this.is_terminated {
523 panic!("polled RecorderRequestStream after completion");
524 }
525 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
526 |bytes, handles| {
527 match this.inner.channel().read_etc(cx, bytes, handles) {
528 std::task::Poll::Ready(Ok(())) => {}
529 std::task::Poll::Pending => return std::task::Poll::Pending,
530 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
531 this.is_terminated = true;
532 return std::task::Poll::Ready(None);
533 }
534 std::task::Poll::Ready(Err(e)) => {
535 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
536 e.into(),
537 ))))
538 }
539 }
540
541 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
543
544 std::task::Poll::Ready(Some(match header.ordinal {
545 0x40e4e1a9c6c42bd2 => {
546 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
547 let mut req = fidl::new_empty!(
548 RecorderStartLoggingRequest,
549 fidl::encoding::DefaultFuchsiaResourceDialect
550 );
551 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<RecorderStartLoggingRequest>(&header, _body_bytes, handles, &mut req)?;
552 let control_handle = RecorderControlHandle { inner: this.inner.clone() };
553 Ok(RecorderRequest::StartLogging {
554 client_id: req.client_id,
555 metrics: req.metrics,
556 duration_ms: req.duration_ms,
557 output_samples_to_syslog: req.output_samples_to_syslog,
558 output_stats_to_syslog: req.output_stats_to_syslog,
559
560 responder: RecorderStartLoggingResponder {
561 control_handle: std::mem::ManuallyDrop::new(control_handle),
562 tx_id: header.tx_id,
563 },
564 })
565 }
566 0x37b2675fdc61ff94 => {
567 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
568 let mut req = fidl::new_empty!(
569 RecorderStartLoggingForeverRequest,
570 fidl::encoding::DefaultFuchsiaResourceDialect
571 );
572 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<RecorderStartLoggingForeverRequest>(&header, _body_bytes, handles, &mut req)?;
573 let control_handle = RecorderControlHandle { inner: this.inner.clone() };
574 Ok(RecorderRequest::StartLoggingForever {
575 client_id: req.client_id,
576 metrics: req.metrics,
577 output_samples_to_syslog: req.output_samples_to_syslog,
578 output_stats_to_syslog: req.output_stats_to_syslog,
579
580 responder: RecorderStartLoggingForeverResponder {
581 control_handle: std::mem::ManuallyDrop::new(control_handle),
582 tx_id: header.tx_id,
583 },
584 })
585 }
586 0x615d67a4d94d4732 => {
587 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
588 let mut req = fidl::new_empty!(
589 RecorderStopLoggingRequest,
590 fidl::encoding::DefaultFuchsiaResourceDialect
591 );
592 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<RecorderStopLoggingRequest>(&header, _body_bytes, handles, &mut req)?;
593 let control_handle = RecorderControlHandle { inner: this.inner.clone() };
594 Ok(RecorderRequest::StopLogging {
595 client_id: req.client_id,
596
597 responder: RecorderStopLoggingResponder {
598 control_handle: std::mem::ManuallyDrop::new(control_handle),
599 tx_id: header.tx_id,
600 },
601 })
602 }
603 _ => Err(fidl::Error::UnknownOrdinal {
604 ordinal: header.ordinal,
605 protocol_name:
606 <RecorderMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
607 }),
608 }))
609 },
610 )
611 }
612}
613
614#[derive(Debug)]
616pub enum RecorderRequest {
617 StartLogging {
638 client_id: String,
639 metrics: Vec<Metric>,
640 duration_ms: u32,
641 output_samples_to_syslog: bool,
642 output_stats_to_syslog: bool,
643 responder: RecorderStartLoggingResponder,
644 },
645 StartLoggingForever {
661 client_id: String,
662 metrics: Vec<Metric>,
663 output_samples_to_syslog: bool,
664 output_stats_to_syslog: bool,
665 responder: RecorderStartLoggingForeverResponder,
666 },
667 StopLogging { client_id: String, responder: RecorderStopLoggingResponder },
674}
675
676impl RecorderRequest {
677 #[allow(irrefutable_let_patterns)]
678 pub fn into_start_logging(
679 self,
680 ) -> Option<(String, Vec<Metric>, u32, bool, bool, RecorderStartLoggingResponder)> {
681 if let RecorderRequest::StartLogging {
682 client_id,
683 metrics,
684 duration_ms,
685 output_samples_to_syslog,
686 output_stats_to_syslog,
687 responder,
688 } = self
689 {
690 Some((
691 client_id,
692 metrics,
693 duration_ms,
694 output_samples_to_syslog,
695 output_stats_to_syslog,
696 responder,
697 ))
698 } else {
699 None
700 }
701 }
702
703 #[allow(irrefutable_let_patterns)]
704 pub fn into_start_logging_forever(
705 self,
706 ) -> Option<(String, Vec<Metric>, bool, bool, RecorderStartLoggingForeverResponder)> {
707 if let RecorderRequest::StartLoggingForever {
708 client_id,
709 metrics,
710 output_samples_to_syslog,
711 output_stats_to_syslog,
712 responder,
713 } = self
714 {
715 Some((client_id, metrics, output_samples_to_syslog, output_stats_to_syslog, responder))
716 } else {
717 None
718 }
719 }
720
721 #[allow(irrefutable_let_patterns)]
722 pub fn into_stop_logging(self) -> Option<(String, RecorderStopLoggingResponder)> {
723 if let RecorderRequest::StopLogging { client_id, responder } = self {
724 Some((client_id, responder))
725 } else {
726 None
727 }
728 }
729
730 pub fn method_name(&self) -> &'static str {
732 match *self {
733 RecorderRequest::StartLogging { .. } => "start_logging",
734 RecorderRequest::StartLoggingForever { .. } => "start_logging_forever",
735 RecorderRequest::StopLogging { .. } => "stop_logging",
736 }
737 }
738}
739
740#[derive(Debug, Clone)]
741pub struct RecorderControlHandle {
742 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
743}
744
745impl fidl::endpoints::ControlHandle for RecorderControlHandle {
746 fn shutdown(&self) {
747 self.inner.shutdown()
748 }
749 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
750 self.inner.shutdown_with_epitaph(status)
751 }
752
753 fn is_closed(&self) -> bool {
754 self.inner.channel().is_closed()
755 }
756 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
757 self.inner.channel().on_closed()
758 }
759
760 #[cfg(target_os = "fuchsia")]
761 fn signal_peer(
762 &self,
763 clear_mask: zx::Signals,
764 set_mask: zx::Signals,
765 ) -> Result<(), zx_status::Status> {
766 use fidl::Peered;
767 self.inner.channel().signal_peer(clear_mask, set_mask)
768 }
769}
770
771impl RecorderControlHandle {}
772
773#[must_use = "FIDL methods require a response to be sent"]
774#[derive(Debug)]
775pub struct RecorderStartLoggingResponder {
776 control_handle: std::mem::ManuallyDrop<RecorderControlHandle>,
777 tx_id: u32,
778}
779
780impl std::ops::Drop for RecorderStartLoggingResponder {
784 fn drop(&mut self) {
785 self.control_handle.shutdown();
786 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
788 }
789}
790
791impl fidl::endpoints::Responder for RecorderStartLoggingResponder {
792 type ControlHandle = RecorderControlHandle;
793
794 fn control_handle(&self) -> &RecorderControlHandle {
795 &self.control_handle
796 }
797
798 fn drop_without_shutdown(mut self) {
799 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
801 std::mem::forget(self);
803 }
804}
805
806impl RecorderStartLoggingResponder {
807 pub fn send(self, mut result: Result<(), RecorderError>) -> Result<(), fidl::Error> {
811 let _result = self.send_raw(result);
812 if _result.is_err() {
813 self.control_handle.shutdown();
814 }
815 self.drop_without_shutdown();
816 _result
817 }
818
819 pub fn send_no_shutdown_on_err(
821 self,
822 mut result: Result<(), RecorderError>,
823 ) -> Result<(), fidl::Error> {
824 let _result = self.send_raw(result);
825 self.drop_without_shutdown();
826 _result
827 }
828
829 fn send_raw(&self, mut result: Result<(), RecorderError>) -> Result<(), fidl::Error> {
830 self.control_handle.inner.send::<fidl::encoding::ResultType<
831 fidl::encoding::EmptyStruct,
832 RecorderError,
833 >>(
834 result,
835 self.tx_id,
836 0x40e4e1a9c6c42bd2,
837 fidl::encoding::DynamicFlags::empty(),
838 )
839 }
840}
841
842#[must_use = "FIDL methods require a response to be sent"]
843#[derive(Debug)]
844pub struct RecorderStartLoggingForeverResponder {
845 control_handle: std::mem::ManuallyDrop<RecorderControlHandle>,
846 tx_id: u32,
847}
848
849impl std::ops::Drop for RecorderStartLoggingForeverResponder {
853 fn drop(&mut self) {
854 self.control_handle.shutdown();
855 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
857 }
858}
859
860impl fidl::endpoints::Responder for RecorderStartLoggingForeverResponder {
861 type ControlHandle = RecorderControlHandle;
862
863 fn control_handle(&self) -> &RecorderControlHandle {
864 &self.control_handle
865 }
866
867 fn drop_without_shutdown(mut self) {
868 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
870 std::mem::forget(self);
872 }
873}
874
875impl RecorderStartLoggingForeverResponder {
876 pub fn send(self, mut result: Result<(), RecorderError>) -> Result<(), fidl::Error> {
880 let _result = self.send_raw(result);
881 if _result.is_err() {
882 self.control_handle.shutdown();
883 }
884 self.drop_without_shutdown();
885 _result
886 }
887
888 pub fn send_no_shutdown_on_err(
890 self,
891 mut result: Result<(), RecorderError>,
892 ) -> Result<(), fidl::Error> {
893 let _result = self.send_raw(result);
894 self.drop_without_shutdown();
895 _result
896 }
897
898 fn send_raw(&self, mut result: Result<(), RecorderError>) -> Result<(), fidl::Error> {
899 self.control_handle.inner.send::<fidl::encoding::ResultType<
900 fidl::encoding::EmptyStruct,
901 RecorderError,
902 >>(
903 result,
904 self.tx_id,
905 0x37b2675fdc61ff94,
906 fidl::encoding::DynamicFlags::empty(),
907 )
908 }
909}
910
911#[must_use = "FIDL methods require a response to be sent"]
912#[derive(Debug)]
913pub struct RecorderStopLoggingResponder {
914 control_handle: std::mem::ManuallyDrop<RecorderControlHandle>,
915 tx_id: u32,
916}
917
918impl std::ops::Drop for RecorderStopLoggingResponder {
922 fn drop(&mut self) {
923 self.control_handle.shutdown();
924 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
926 }
927}
928
929impl fidl::endpoints::Responder for RecorderStopLoggingResponder {
930 type ControlHandle = RecorderControlHandle;
931
932 fn control_handle(&self) -> &RecorderControlHandle {
933 &self.control_handle
934 }
935
936 fn drop_without_shutdown(mut self) {
937 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
939 std::mem::forget(self);
941 }
942}
943
944impl RecorderStopLoggingResponder {
945 pub fn send(self, mut stopped: bool) -> Result<(), fidl::Error> {
949 let _result = self.send_raw(stopped);
950 if _result.is_err() {
951 self.control_handle.shutdown();
952 }
953 self.drop_without_shutdown();
954 _result
955 }
956
957 pub fn send_no_shutdown_on_err(self, mut stopped: bool) -> Result<(), fidl::Error> {
959 let _result = self.send_raw(stopped);
960 self.drop_without_shutdown();
961 _result
962 }
963
964 fn send_raw(&self, mut stopped: bool) -> Result<(), fidl::Error> {
965 self.control_handle.inner.send::<RecorderStopLoggingResponse>(
966 (stopped,),
967 self.tx_id,
968 0x615d67a4d94d4732,
969 fidl::encoding::DynamicFlags::empty(),
970 )
971 }
972}
973
974mod internal {
975 use super::*;
976}