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_starnix_runner_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Default, PartialEq)]
15pub struct ManagerProxyWakeChannelRequest {
16 pub container_job: Option<fidl::Job>,
18 pub container_channel: Option<fidl::Channel>,
20 pub remote_channel: Option<fidl::Channel>,
22 pub name: Option<String>,
24 pub counter: Option<fidl::Counter>,
32 #[doc(hidden)]
33 pub __source_breaking: fidl::marker::SourceBreaking,
34}
35
36impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
37 for ManagerProxyWakeChannelRequest
38{
39}
40
41#[derive(Debug, Default, PartialEq)]
42pub struct ManagerRegisterWakeWatcherRequest {
43 pub watcher: Option<fidl::EventPair>,
45 #[doc(hidden)]
46 pub __source_breaking: fidl::marker::SourceBreaking,
47}
48
49impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
50 for ManagerRegisterWakeWatcherRequest
51{
52}
53
54#[derive(Debug, Default, PartialEq)]
55pub struct ManagerSuspendContainerRequest {
56 pub container_job: Option<fidl::Job>,
58 pub wake_locks: Option<fidl::EventPair>,
61 #[doc(hidden)]
62 pub __source_breaking: fidl::marker::SourceBreaking,
63}
64
65impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
66 for ManagerSuspendContainerRequest
67{
68}
69
70#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
71pub struct ManagerMarker;
72
73impl fidl::endpoints::ProtocolMarker for ManagerMarker {
74 type Proxy = ManagerProxy;
75 type RequestStream = ManagerRequestStream;
76 #[cfg(target_os = "fuchsia")]
77 type SynchronousProxy = ManagerSynchronousProxy;
78
79 const DEBUG_NAME: &'static str = "fuchsia.starnix.runner.Manager";
80}
81impl fidl::endpoints::DiscoverableProtocolMarker for ManagerMarker {}
82pub type ManagerSuspendContainerResult = Result<ManagerSuspendContainerResponse, SuspendError>;
83
84pub trait ManagerProxyInterface: Send + Sync {
85 type SuspendContainerResponseFut: std::future::Future<Output = Result<ManagerSuspendContainerResult, fidl::Error>>
86 + Send;
87 fn r#suspend_container(
88 &self,
89 payload: ManagerSuspendContainerRequest,
90 ) -> Self::SuspendContainerResponseFut;
91 fn r#proxy_wake_channel(
92 &self,
93 payload: ManagerProxyWakeChannelRequest,
94 ) -> Result<(), fidl::Error>;
95 type RegisterWakeWatcherResponseFut: std::future::Future<Output = Result<(), fidl::Error>>
96 + Send;
97 fn r#register_wake_watcher(
98 &self,
99 payload: ManagerRegisterWakeWatcherRequest,
100 ) -> Self::RegisterWakeWatcherResponseFut;
101}
102#[derive(Debug)]
103#[cfg(target_os = "fuchsia")]
104pub struct ManagerSynchronousProxy {
105 client: fidl::client::sync::Client,
106}
107
108#[cfg(target_os = "fuchsia")]
109impl fidl::endpoints::SynchronousProxy for ManagerSynchronousProxy {
110 type Proxy = ManagerProxy;
111 type Protocol = ManagerMarker;
112
113 fn from_channel(inner: fidl::Channel) -> Self {
114 Self::new(inner)
115 }
116
117 fn into_channel(self) -> fidl::Channel {
118 self.client.into_channel()
119 }
120
121 fn as_channel(&self) -> &fidl::Channel {
122 self.client.as_channel()
123 }
124}
125
126#[cfg(target_os = "fuchsia")]
127impl ManagerSynchronousProxy {
128 pub fn new(channel: fidl::Channel) -> Self {
129 let protocol_name = <ManagerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
130 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
131 }
132
133 pub fn into_channel(self) -> fidl::Channel {
134 self.client.into_channel()
135 }
136
137 pub fn wait_for_event(
140 &self,
141 deadline: zx::MonotonicInstant,
142 ) -> Result<ManagerEvent, fidl::Error> {
143 ManagerEvent::decode(self.client.wait_for_event(deadline)?)
144 }
145
146 pub fn r#suspend_container(
152 &self,
153 mut payload: ManagerSuspendContainerRequest,
154 ___deadline: zx::MonotonicInstant,
155 ) -> Result<ManagerSuspendContainerResult, fidl::Error> {
156 let _response = self.client.send_query::<
157 ManagerSuspendContainerRequest,
158 fidl::encoding::FlexibleResultType<ManagerSuspendContainerResponse, SuspendError>,
159 >(
160 &mut payload,
161 0x928527927c9f2a7,
162 fidl::encoding::DynamicFlags::FLEXIBLE,
163 ___deadline,
164 )?
165 .into_result::<ManagerMarker>("suspend_container")?;
166 Ok(_response.map(|x| x))
167 }
168
169 pub fn r#proxy_wake_channel(
178 &self,
179 mut payload: ManagerProxyWakeChannelRequest,
180 ) -> Result<(), fidl::Error> {
181 self.client.send::<ManagerProxyWakeChannelRequest>(
182 &mut payload,
183 0x46a374ab73b23714,
184 fidl::encoding::DynamicFlags::FLEXIBLE,
185 )
186 }
187
188 pub fn r#register_wake_watcher(
193 &self,
194 mut payload: ManagerRegisterWakeWatcherRequest,
195 ___deadline: zx::MonotonicInstant,
196 ) -> Result<(), fidl::Error> {
197 let _response = self.client.send_query::<
198 ManagerRegisterWakeWatcherRequest,
199 fidl::encoding::FlexibleType<fidl::encoding::EmptyStruct>,
200 >(
201 &mut payload,
202 0x456d74519eb65b41,
203 fidl::encoding::DynamicFlags::FLEXIBLE,
204 ___deadline,
205 )?
206 .into_result::<ManagerMarker>("register_wake_watcher")?;
207 Ok(_response)
208 }
209}
210
211#[cfg(target_os = "fuchsia")]
212impl From<ManagerSynchronousProxy> for zx::Handle {
213 fn from(value: ManagerSynchronousProxy) -> Self {
214 value.into_channel().into()
215 }
216}
217
218#[cfg(target_os = "fuchsia")]
219impl From<fidl::Channel> for ManagerSynchronousProxy {
220 fn from(value: fidl::Channel) -> Self {
221 Self::new(value)
222 }
223}
224
225#[derive(Debug, Clone)]
226pub struct ManagerProxy {
227 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
228}
229
230impl fidl::endpoints::Proxy for ManagerProxy {
231 type Protocol = ManagerMarker;
232
233 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
234 Self::new(inner)
235 }
236
237 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
238 self.client.into_channel().map_err(|client| Self { client })
239 }
240
241 fn as_channel(&self) -> &::fidl::AsyncChannel {
242 self.client.as_channel()
243 }
244}
245
246impl ManagerProxy {
247 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
249 let protocol_name = <ManagerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
250 Self { client: fidl::client::Client::new(channel, protocol_name) }
251 }
252
253 pub fn take_event_stream(&self) -> ManagerEventStream {
259 ManagerEventStream { event_receiver: self.client.take_event_receiver() }
260 }
261
262 pub fn r#suspend_container(
268 &self,
269 mut payload: ManagerSuspendContainerRequest,
270 ) -> fidl::client::QueryResponseFut<
271 ManagerSuspendContainerResult,
272 fidl::encoding::DefaultFuchsiaResourceDialect,
273 > {
274 ManagerProxyInterface::r#suspend_container(self, payload)
275 }
276
277 pub fn r#proxy_wake_channel(
286 &self,
287 mut payload: ManagerProxyWakeChannelRequest,
288 ) -> Result<(), fidl::Error> {
289 ManagerProxyInterface::r#proxy_wake_channel(self, payload)
290 }
291
292 pub fn r#register_wake_watcher(
297 &self,
298 mut payload: ManagerRegisterWakeWatcherRequest,
299 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
300 ManagerProxyInterface::r#register_wake_watcher(self, payload)
301 }
302}
303
304impl ManagerProxyInterface for ManagerProxy {
305 type SuspendContainerResponseFut = fidl::client::QueryResponseFut<
306 ManagerSuspendContainerResult,
307 fidl::encoding::DefaultFuchsiaResourceDialect,
308 >;
309 fn r#suspend_container(
310 &self,
311 mut payload: ManagerSuspendContainerRequest,
312 ) -> Self::SuspendContainerResponseFut {
313 fn _decode(
314 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
315 ) -> Result<ManagerSuspendContainerResult, fidl::Error> {
316 let _response = fidl::client::decode_transaction_body::<
317 fidl::encoding::FlexibleResultType<ManagerSuspendContainerResponse, SuspendError>,
318 fidl::encoding::DefaultFuchsiaResourceDialect,
319 0x928527927c9f2a7,
320 >(_buf?)?
321 .into_result::<ManagerMarker>("suspend_container")?;
322 Ok(_response.map(|x| x))
323 }
324 self.client
325 .send_query_and_decode::<ManagerSuspendContainerRequest, ManagerSuspendContainerResult>(
326 &mut payload,
327 0x928527927c9f2a7,
328 fidl::encoding::DynamicFlags::FLEXIBLE,
329 _decode,
330 )
331 }
332
333 fn r#proxy_wake_channel(
334 &self,
335 mut payload: ManagerProxyWakeChannelRequest,
336 ) -> Result<(), fidl::Error> {
337 self.client.send::<ManagerProxyWakeChannelRequest>(
338 &mut payload,
339 0x46a374ab73b23714,
340 fidl::encoding::DynamicFlags::FLEXIBLE,
341 )
342 }
343
344 type RegisterWakeWatcherResponseFut =
345 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
346 fn r#register_wake_watcher(
347 &self,
348 mut payload: ManagerRegisterWakeWatcherRequest,
349 ) -> Self::RegisterWakeWatcherResponseFut {
350 fn _decode(
351 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
352 ) -> Result<(), fidl::Error> {
353 let _response = fidl::client::decode_transaction_body::<
354 fidl::encoding::FlexibleType<fidl::encoding::EmptyStruct>,
355 fidl::encoding::DefaultFuchsiaResourceDialect,
356 0x456d74519eb65b41,
357 >(_buf?)?
358 .into_result::<ManagerMarker>("register_wake_watcher")?;
359 Ok(_response)
360 }
361 self.client.send_query_and_decode::<ManagerRegisterWakeWatcherRequest, ()>(
362 &mut payload,
363 0x456d74519eb65b41,
364 fidl::encoding::DynamicFlags::FLEXIBLE,
365 _decode,
366 )
367 }
368}
369
370pub struct ManagerEventStream {
371 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
372}
373
374impl std::marker::Unpin for ManagerEventStream {}
375
376impl futures::stream::FusedStream for ManagerEventStream {
377 fn is_terminated(&self) -> bool {
378 self.event_receiver.is_terminated()
379 }
380}
381
382impl futures::Stream for ManagerEventStream {
383 type Item = Result<ManagerEvent, fidl::Error>;
384
385 fn poll_next(
386 mut self: std::pin::Pin<&mut Self>,
387 cx: &mut std::task::Context<'_>,
388 ) -> std::task::Poll<Option<Self::Item>> {
389 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
390 &mut self.event_receiver,
391 cx
392 )?) {
393 Some(buf) => std::task::Poll::Ready(Some(ManagerEvent::decode(buf))),
394 None => std::task::Poll::Ready(None),
395 }
396 }
397}
398
399#[derive(Debug)]
400pub enum ManagerEvent {
401 #[non_exhaustive]
402 _UnknownEvent {
403 ordinal: u64,
405 },
406}
407
408impl ManagerEvent {
409 fn decode(
411 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
412 ) -> Result<ManagerEvent, fidl::Error> {
413 let (bytes, _handles) = buf.split_mut();
414 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
415 debug_assert_eq!(tx_header.tx_id, 0);
416 match tx_header.ordinal {
417 _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
418 Ok(ManagerEvent::_UnknownEvent { ordinal: tx_header.ordinal })
419 }
420 _ => Err(fidl::Error::UnknownOrdinal {
421 ordinal: tx_header.ordinal,
422 protocol_name: <ManagerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
423 }),
424 }
425 }
426}
427
428pub struct ManagerRequestStream {
430 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
431 is_terminated: bool,
432}
433
434impl std::marker::Unpin for ManagerRequestStream {}
435
436impl futures::stream::FusedStream for ManagerRequestStream {
437 fn is_terminated(&self) -> bool {
438 self.is_terminated
439 }
440}
441
442impl fidl::endpoints::RequestStream for ManagerRequestStream {
443 type Protocol = ManagerMarker;
444 type ControlHandle = ManagerControlHandle;
445
446 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
447 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
448 }
449
450 fn control_handle(&self) -> Self::ControlHandle {
451 ManagerControlHandle { inner: self.inner.clone() }
452 }
453
454 fn into_inner(
455 self,
456 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
457 {
458 (self.inner, self.is_terminated)
459 }
460
461 fn from_inner(
462 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
463 is_terminated: bool,
464 ) -> Self {
465 Self { inner, is_terminated }
466 }
467}
468
469impl futures::Stream for ManagerRequestStream {
470 type Item = Result<ManagerRequest, fidl::Error>;
471
472 fn poll_next(
473 mut self: std::pin::Pin<&mut Self>,
474 cx: &mut std::task::Context<'_>,
475 ) -> std::task::Poll<Option<Self::Item>> {
476 let this = &mut *self;
477 if this.inner.check_shutdown(cx) {
478 this.is_terminated = true;
479 return std::task::Poll::Ready(None);
480 }
481 if this.is_terminated {
482 panic!("polled ManagerRequestStream after completion");
483 }
484 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
485 |bytes, handles| {
486 match this.inner.channel().read_etc(cx, bytes, handles) {
487 std::task::Poll::Ready(Ok(())) => {}
488 std::task::Poll::Pending => return std::task::Poll::Pending,
489 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
490 this.is_terminated = true;
491 return std::task::Poll::Ready(None);
492 }
493 std::task::Poll::Ready(Err(e)) => {
494 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
495 e.into(),
496 ))))
497 }
498 }
499
500 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
502
503 std::task::Poll::Ready(Some(match header.ordinal {
504 0x928527927c9f2a7 => {
505 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
506 let mut req = fidl::new_empty!(
507 ManagerSuspendContainerRequest,
508 fidl::encoding::DefaultFuchsiaResourceDialect
509 );
510 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ManagerSuspendContainerRequest>(&header, _body_bytes, handles, &mut req)?;
511 let control_handle = ManagerControlHandle { inner: this.inner.clone() };
512 Ok(ManagerRequest::SuspendContainer {
513 payload: req,
514 responder: ManagerSuspendContainerResponder {
515 control_handle: std::mem::ManuallyDrop::new(control_handle),
516 tx_id: header.tx_id,
517 },
518 })
519 }
520 0x46a374ab73b23714 => {
521 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
522 let mut req = fidl::new_empty!(
523 ManagerProxyWakeChannelRequest,
524 fidl::encoding::DefaultFuchsiaResourceDialect
525 );
526 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ManagerProxyWakeChannelRequest>(&header, _body_bytes, handles, &mut req)?;
527 let control_handle = ManagerControlHandle { inner: this.inner.clone() };
528 Ok(ManagerRequest::ProxyWakeChannel { payload: req, control_handle })
529 }
530 0x456d74519eb65b41 => {
531 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
532 let mut req = fidl::new_empty!(
533 ManagerRegisterWakeWatcherRequest,
534 fidl::encoding::DefaultFuchsiaResourceDialect
535 );
536 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ManagerRegisterWakeWatcherRequest>(&header, _body_bytes, handles, &mut req)?;
537 let control_handle = ManagerControlHandle { inner: this.inner.clone() };
538 Ok(ManagerRequest::RegisterWakeWatcher {
539 payload: req,
540 responder: ManagerRegisterWakeWatcherResponder {
541 control_handle: std::mem::ManuallyDrop::new(control_handle),
542 tx_id: header.tx_id,
543 },
544 })
545 }
546 _ if header.tx_id == 0
547 && header
548 .dynamic_flags()
549 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
550 {
551 Ok(ManagerRequest::_UnknownMethod {
552 ordinal: header.ordinal,
553 control_handle: ManagerControlHandle { inner: this.inner.clone() },
554 method_type: fidl::MethodType::OneWay,
555 })
556 }
557 _ if header
558 .dynamic_flags()
559 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
560 {
561 this.inner.send_framework_err(
562 fidl::encoding::FrameworkErr::UnknownMethod,
563 header.tx_id,
564 header.ordinal,
565 header.dynamic_flags(),
566 (bytes, handles),
567 )?;
568 Ok(ManagerRequest::_UnknownMethod {
569 ordinal: header.ordinal,
570 control_handle: ManagerControlHandle { inner: this.inner.clone() },
571 method_type: fidl::MethodType::TwoWay,
572 })
573 }
574 _ => Err(fidl::Error::UnknownOrdinal {
575 ordinal: header.ordinal,
576 protocol_name:
577 <ManagerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
578 }),
579 }))
580 },
581 )
582 }
583}
584
585#[derive(Debug)]
586pub enum ManagerRequest {
587 SuspendContainer {
593 payload: ManagerSuspendContainerRequest,
594 responder: ManagerSuspendContainerResponder,
595 },
596 ProxyWakeChannel {
605 payload: ManagerProxyWakeChannelRequest,
606 control_handle: ManagerControlHandle,
607 },
608 RegisterWakeWatcher {
613 payload: ManagerRegisterWakeWatcherRequest,
614 responder: ManagerRegisterWakeWatcherResponder,
615 },
616 #[non_exhaustive]
618 _UnknownMethod {
619 ordinal: u64,
621 control_handle: ManagerControlHandle,
622 method_type: fidl::MethodType,
623 },
624}
625
626impl ManagerRequest {
627 #[allow(irrefutable_let_patterns)]
628 pub fn into_suspend_container(
629 self,
630 ) -> Option<(ManagerSuspendContainerRequest, ManagerSuspendContainerResponder)> {
631 if let ManagerRequest::SuspendContainer { payload, responder } = self {
632 Some((payload, responder))
633 } else {
634 None
635 }
636 }
637
638 #[allow(irrefutable_let_patterns)]
639 pub fn into_proxy_wake_channel(
640 self,
641 ) -> Option<(ManagerProxyWakeChannelRequest, ManagerControlHandle)> {
642 if let ManagerRequest::ProxyWakeChannel { payload, control_handle } = self {
643 Some((payload, control_handle))
644 } else {
645 None
646 }
647 }
648
649 #[allow(irrefutable_let_patterns)]
650 pub fn into_register_wake_watcher(
651 self,
652 ) -> Option<(ManagerRegisterWakeWatcherRequest, ManagerRegisterWakeWatcherResponder)> {
653 if let ManagerRequest::RegisterWakeWatcher { payload, responder } = self {
654 Some((payload, responder))
655 } else {
656 None
657 }
658 }
659
660 pub fn method_name(&self) -> &'static str {
662 match *self {
663 ManagerRequest::SuspendContainer { .. } => "suspend_container",
664 ManagerRequest::ProxyWakeChannel { .. } => "proxy_wake_channel",
665 ManagerRequest::RegisterWakeWatcher { .. } => "register_wake_watcher",
666 ManagerRequest::_UnknownMethod { method_type: fidl::MethodType::OneWay, .. } => {
667 "unknown one-way method"
668 }
669 ManagerRequest::_UnknownMethod { method_type: fidl::MethodType::TwoWay, .. } => {
670 "unknown two-way method"
671 }
672 }
673 }
674}
675
676#[derive(Debug, Clone)]
677pub struct ManagerControlHandle {
678 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
679}
680
681impl fidl::endpoints::ControlHandle for ManagerControlHandle {
682 fn shutdown(&self) {
683 self.inner.shutdown()
684 }
685 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
686 self.inner.shutdown_with_epitaph(status)
687 }
688
689 fn is_closed(&self) -> bool {
690 self.inner.channel().is_closed()
691 }
692 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
693 self.inner.channel().on_closed()
694 }
695
696 #[cfg(target_os = "fuchsia")]
697 fn signal_peer(
698 &self,
699 clear_mask: zx::Signals,
700 set_mask: zx::Signals,
701 ) -> Result<(), zx_status::Status> {
702 use fidl::Peered;
703 self.inner.channel().signal_peer(clear_mask, set_mask)
704 }
705}
706
707impl ManagerControlHandle {}
708
709#[must_use = "FIDL methods require a response to be sent"]
710#[derive(Debug)]
711pub struct ManagerSuspendContainerResponder {
712 control_handle: std::mem::ManuallyDrop<ManagerControlHandle>,
713 tx_id: u32,
714}
715
716impl std::ops::Drop for ManagerSuspendContainerResponder {
720 fn drop(&mut self) {
721 self.control_handle.shutdown();
722 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
724 }
725}
726
727impl fidl::endpoints::Responder for ManagerSuspendContainerResponder {
728 type ControlHandle = ManagerControlHandle;
729
730 fn control_handle(&self) -> &ManagerControlHandle {
731 &self.control_handle
732 }
733
734 fn drop_without_shutdown(mut self) {
735 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
737 std::mem::forget(self);
739 }
740}
741
742impl ManagerSuspendContainerResponder {
743 pub fn send(
747 self,
748 mut result: Result<&ManagerSuspendContainerResponse, SuspendError>,
749 ) -> Result<(), fidl::Error> {
750 let _result = self.send_raw(result);
751 if _result.is_err() {
752 self.control_handle.shutdown();
753 }
754 self.drop_without_shutdown();
755 _result
756 }
757
758 pub fn send_no_shutdown_on_err(
760 self,
761 mut result: Result<&ManagerSuspendContainerResponse, SuspendError>,
762 ) -> Result<(), fidl::Error> {
763 let _result = self.send_raw(result);
764 self.drop_without_shutdown();
765 _result
766 }
767
768 fn send_raw(
769 &self,
770 mut result: Result<&ManagerSuspendContainerResponse, SuspendError>,
771 ) -> Result<(), fidl::Error> {
772 self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
773 ManagerSuspendContainerResponse,
774 SuspendError,
775 >>(
776 fidl::encoding::FlexibleResult::new(result),
777 self.tx_id,
778 0x928527927c9f2a7,
779 fidl::encoding::DynamicFlags::FLEXIBLE,
780 )
781 }
782}
783
784#[must_use = "FIDL methods require a response to be sent"]
785#[derive(Debug)]
786pub struct ManagerRegisterWakeWatcherResponder {
787 control_handle: std::mem::ManuallyDrop<ManagerControlHandle>,
788 tx_id: u32,
789}
790
791impl std::ops::Drop for ManagerRegisterWakeWatcherResponder {
795 fn drop(&mut self) {
796 self.control_handle.shutdown();
797 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
799 }
800}
801
802impl fidl::endpoints::Responder for ManagerRegisterWakeWatcherResponder {
803 type ControlHandle = ManagerControlHandle;
804
805 fn control_handle(&self) -> &ManagerControlHandle {
806 &self.control_handle
807 }
808
809 fn drop_without_shutdown(mut self) {
810 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
812 std::mem::forget(self);
814 }
815}
816
817impl ManagerRegisterWakeWatcherResponder {
818 pub fn send(self) -> Result<(), fidl::Error> {
822 let _result = self.send_raw();
823 if _result.is_err() {
824 self.control_handle.shutdown();
825 }
826 self.drop_without_shutdown();
827 _result
828 }
829
830 pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
832 let _result = self.send_raw();
833 self.drop_without_shutdown();
834 _result
835 }
836
837 fn send_raw(&self) -> Result<(), fidl::Error> {
838 self.control_handle.inner.send::<fidl::encoding::FlexibleType<fidl::encoding::EmptyStruct>>(
839 fidl::encoding::Flexible::new(()),
840 self.tx_id,
841 0x456d74519eb65b41,
842 fidl::encoding::DynamicFlags::FLEXIBLE,
843 )
844 }
845}
846
847mod internal {
848 use super::*;
849
850 impl ManagerProxyWakeChannelRequest {
851 #[inline(always)]
852 fn max_ordinal_present(&self) -> u64 {
853 if let Some(_) = self.counter {
854 return 5;
855 }
856 if let Some(_) = self.name {
857 return 4;
858 }
859 if let Some(_) = self.remote_channel {
860 return 3;
861 }
862 if let Some(_) = self.container_channel {
863 return 2;
864 }
865 if let Some(_) = self.container_job {
866 return 1;
867 }
868 0
869 }
870 }
871
872 impl fidl::encoding::ResourceTypeMarker for ManagerProxyWakeChannelRequest {
873 type Borrowed<'a> = &'a mut Self;
874 fn take_or_borrow<'a>(
875 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
876 ) -> Self::Borrowed<'a> {
877 value
878 }
879 }
880
881 unsafe impl fidl::encoding::TypeMarker for ManagerProxyWakeChannelRequest {
882 type Owned = Self;
883
884 #[inline(always)]
885 fn inline_align(_context: fidl::encoding::Context) -> usize {
886 8
887 }
888
889 #[inline(always)]
890 fn inline_size(_context: fidl::encoding::Context) -> usize {
891 16
892 }
893 }
894
895 unsafe impl
896 fidl::encoding::Encode<
897 ManagerProxyWakeChannelRequest,
898 fidl::encoding::DefaultFuchsiaResourceDialect,
899 > for &mut ManagerProxyWakeChannelRequest
900 {
901 unsafe fn encode(
902 self,
903 encoder: &mut fidl::encoding::Encoder<
904 '_,
905 fidl::encoding::DefaultFuchsiaResourceDialect,
906 >,
907 offset: usize,
908 mut depth: fidl::encoding::Depth,
909 ) -> fidl::Result<()> {
910 encoder.debug_check_bounds::<ManagerProxyWakeChannelRequest>(offset);
911 let max_ordinal: u64 = self.max_ordinal_present();
913 encoder.write_num(max_ordinal, offset);
914 encoder.write_num(fidl::encoding::ALLOC_PRESENT_U64, offset + 8);
915 if max_ordinal == 0 {
917 return Ok(());
918 }
919 depth.increment()?;
920 let envelope_size = 8;
921 let bytes_len = max_ordinal as usize * envelope_size;
922 #[allow(unused_variables)]
923 let offset = encoder.out_of_line_offset(bytes_len);
924 let mut _prev_end_offset: usize = 0;
925 if 1 > max_ordinal {
926 return Ok(());
927 }
928
929 let cur_offset: usize = (1 - 1) * envelope_size;
932
933 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
935
936 fidl::encoding::encode_in_envelope_optional::<
941 fidl::encoding::HandleType<
942 fidl::Job,
943 { fidl::ObjectType::JOB.into_raw() },
944 2147483648,
945 >,
946 fidl::encoding::DefaultFuchsiaResourceDialect,
947 >(
948 self.container_job.as_mut().map(
949 <fidl::encoding::HandleType<
950 fidl::Job,
951 { fidl::ObjectType::JOB.into_raw() },
952 2147483648,
953 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow,
954 ),
955 encoder,
956 offset + cur_offset,
957 depth,
958 )?;
959
960 _prev_end_offset = cur_offset + envelope_size;
961 if 2 > max_ordinal {
962 return Ok(());
963 }
964
965 let cur_offset: usize = (2 - 1) * envelope_size;
968
969 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
971
972 fidl::encoding::encode_in_envelope_optional::<
977 fidl::encoding::HandleType<
978 fidl::Channel,
979 { fidl::ObjectType::CHANNEL.into_raw() },
980 2147483648,
981 >,
982 fidl::encoding::DefaultFuchsiaResourceDialect,
983 >(
984 self.container_channel.as_mut().map(
985 <fidl::encoding::HandleType<
986 fidl::Channel,
987 { fidl::ObjectType::CHANNEL.into_raw() },
988 2147483648,
989 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow,
990 ),
991 encoder,
992 offset + cur_offset,
993 depth,
994 )?;
995
996 _prev_end_offset = cur_offset + envelope_size;
997 if 3 > max_ordinal {
998 return Ok(());
999 }
1000
1001 let cur_offset: usize = (3 - 1) * envelope_size;
1004
1005 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
1007
1008 fidl::encoding::encode_in_envelope_optional::<
1013 fidl::encoding::HandleType<
1014 fidl::Channel,
1015 { fidl::ObjectType::CHANNEL.into_raw() },
1016 2147483648,
1017 >,
1018 fidl::encoding::DefaultFuchsiaResourceDialect,
1019 >(
1020 self.remote_channel.as_mut().map(
1021 <fidl::encoding::HandleType<
1022 fidl::Channel,
1023 { fidl::ObjectType::CHANNEL.into_raw() },
1024 2147483648,
1025 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow,
1026 ),
1027 encoder,
1028 offset + cur_offset,
1029 depth,
1030 )?;
1031
1032 _prev_end_offset = cur_offset + envelope_size;
1033 if 4 > max_ordinal {
1034 return Ok(());
1035 }
1036
1037 let cur_offset: usize = (4 - 1) * envelope_size;
1040
1041 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
1043
1044 fidl::encoding::encode_in_envelope_optional::<fidl::encoding::BoundedString<1024>, fidl::encoding::DefaultFuchsiaResourceDialect>(
1049 self.name.as_ref().map(<fidl::encoding::BoundedString<1024> as fidl::encoding::ValueTypeMarker>::borrow),
1050 encoder, offset + cur_offset, depth
1051 )?;
1052
1053 _prev_end_offset = cur_offset + envelope_size;
1054 if 5 > max_ordinal {
1055 return Ok(());
1056 }
1057
1058 let cur_offset: usize = (5 - 1) * envelope_size;
1061
1062 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
1064
1065 fidl::encoding::encode_in_envelope_optional::<
1070 fidl::encoding::HandleType<
1071 fidl::Counter,
1072 { fidl::ObjectType::COUNTER.into_raw() },
1073 2147483648,
1074 >,
1075 fidl::encoding::DefaultFuchsiaResourceDialect,
1076 >(
1077 self.counter.as_mut().map(
1078 <fidl::encoding::HandleType<
1079 fidl::Counter,
1080 { fidl::ObjectType::COUNTER.into_raw() },
1081 2147483648,
1082 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow,
1083 ),
1084 encoder,
1085 offset + cur_offset,
1086 depth,
1087 )?;
1088
1089 _prev_end_offset = cur_offset + envelope_size;
1090
1091 Ok(())
1092 }
1093 }
1094
1095 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
1096 for ManagerProxyWakeChannelRequest
1097 {
1098 #[inline(always)]
1099 fn new_empty() -> Self {
1100 Self::default()
1101 }
1102
1103 unsafe fn decode(
1104 &mut self,
1105 decoder: &mut fidl::encoding::Decoder<
1106 '_,
1107 fidl::encoding::DefaultFuchsiaResourceDialect,
1108 >,
1109 offset: usize,
1110 mut depth: fidl::encoding::Depth,
1111 ) -> fidl::Result<()> {
1112 decoder.debug_check_bounds::<Self>(offset);
1113 let len = match fidl::encoding::decode_vector_header(decoder, offset)? {
1114 None => return Err(fidl::Error::NotNullable),
1115 Some(len) => len,
1116 };
1117 if len == 0 {
1119 return Ok(());
1120 };
1121 depth.increment()?;
1122 let envelope_size = 8;
1123 let bytes_len = len * envelope_size;
1124 let offset = decoder.out_of_line_offset(bytes_len)?;
1125 let mut _next_ordinal_to_read = 0;
1127 let mut next_offset = offset;
1128 let end_offset = offset + bytes_len;
1129 _next_ordinal_to_read += 1;
1130 if next_offset >= end_offset {
1131 return Ok(());
1132 }
1133
1134 while _next_ordinal_to_read < 1 {
1136 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
1137 _next_ordinal_to_read += 1;
1138 next_offset += envelope_size;
1139 }
1140
1141 let next_out_of_line = decoder.next_out_of_line();
1142 let handles_before = decoder.remaining_handles();
1143 if let Some((inlined, num_bytes, num_handles)) =
1144 fidl::encoding::decode_envelope_header(decoder, next_offset)?
1145 {
1146 let member_inline_size = <fidl::encoding::HandleType<
1147 fidl::Job,
1148 { fidl::ObjectType::JOB.into_raw() },
1149 2147483648,
1150 > as fidl::encoding::TypeMarker>::inline_size(
1151 decoder.context
1152 );
1153 if inlined != (member_inline_size <= 4) {
1154 return Err(fidl::Error::InvalidInlineBitInEnvelope);
1155 }
1156 let inner_offset;
1157 let mut inner_depth = depth.clone();
1158 if inlined {
1159 decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
1160 inner_offset = next_offset;
1161 } else {
1162 inner_offset = decoder.out_of_line_offset(member_inline_size)?;
1163 inner_depth.increment()?;
1164 }
1165 let val_ref =
1166 self.container_job.get_or_insert_with(|| fidl::new_empty!(fidl::encoding::HandleType<fidl::Job, { fidl::ObjectType::JOB.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect));
1167 fidl::decode!(fidl::encoding::HandleType<fidl::Job, { fidl::ObjectType::JOB.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, val_ref, decoder, inner_offset, inner_depth)?;
1168 if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
1169 {
1170 return Err(fidl::Error::InvalidNumBytesInEnvelope);
1171 }
1172 if handles_before != decoder.remaining_handles() + (num_handles as usize) {
1173 return Err(fidl::Error::InvalidNumHandlesInEnvelope);
1174 }
1175 }
1176
1177 next_offset += envelope_size;
1178 _next_ordinal_to_read += 1;
1179 if next_offset >= end_offset {
1180 return Ok(());
1181 }
1182
1183 while _next_ordinal_to_read < 2 {
1185 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
1186 _next_ordinal_to_read += 1;
1187 next_offset += envelope_size;
1188 }
1189
1190 let next_out_of_line = decoder.next_out_of_line();
1191 let handles_before = decoder.remaining_handles();
1192 if let Some((inlined, num_bytes, num_handles)) =
1193 fidl::encoding::decode_envelope_header(decoder, next_offset)?
1194 {
1195 let member_inline_size = <fidl::encoding::HandleType<
1196 fidl::Channel,
1197 { fidl::ObjectType::CHANNEL.into_raw() },
1198 2147483648,
1199 > as fidl::encoding::TypeMarker>::inline_size(
1200 decoder.context
1201 );
1202 if inlined != (member_inline_size <= 4) {
1203 return Err(fidl::Error::InvalidInlineBitInEnvelope);
1204 }
1205 let inner_offset;
1206 let mut inner_depth = depth.clone();
1207 if inlined {
1208 decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
1209 inner_offset = next_offset;
1210 } else {
1211 inner_offset = decoder.out_of_line_offset(member_inline_size)?;
1212 inner_depth.increment()?;
1213 }
1214 let val_ref =
1215 self.container_channel.get_or_insert_with(|| fidl::new_empty!(fidl::encoding::HandleType<fidl::Channel, { fidl::ObjectType::CHANNEL.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect));
1216 fidl::decode!(fidl::encoding::HandleType<fidl::Channel, { fidl::ObjectType::CHANNEL.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, val_ref, decoder, inner_offset, inner_depth)?;
1217 if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
1218 {
1219 return Err(fidl::Error::InvalidNumBytesInEnvelope);
1220 }
1221 if handles_before != decoder.remaining_handles() + (num_handles as usize) {
1222 return Err(fidl::Error::InvalidNumHandlesInEnvelope);
1223 }
1224 }
1225
1226 next_offset += envelope_size;
1227 _next_ordinal_to_read += 1;
1228 if next_offset >= end_offset {
1229 return Ok(());
1230 }
1231
1232 while _next_ordinal_to_read < 3 {
1234 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
1235 _next_ordinal_to_read += 1;
1236 next_offset += envelope_size;
1237 }
1238
1239 let next_out_of_line = decoder.next_out_of_line();
1240 let handles_before = decoder.remaining_handles();
1241 if let Some((inlined, num_bytes, num_handles)) =
1242 fidl::encoding::decode_envelope_header(decoder, next_offset)?
1243 {
1244 let member_inline_size = <fidl::encoding::HandleType<
1245 fidl::Channel,
1246 { fidl::ObjectType::CHANNEL.into_raw() },
1247 2147483648,
1248 > as fidl::encoding::TypeMarker>::inline_size(
1249 decoder.context
1250 );
1251 if inlined != (member_inline_size <= 4) {
1252 return Err(fidl::Error::InvalidInlineBitInEnvelope);
1253 }
1254 let inner_offset;
1255 let mut inner_depth = depth.clone();
1256 if inlined {
1257 decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
1258 inner_offset = next_offset;
1259 } else {
1260 inner_offset = decoder.out_of_line_offset(member_inline_size)?;
1261 inner_depth.increment()?;
1262 }
1263 let val_ref =
1264 self.remote_channel.get_or_insert_with(|| fidl::new_empty!(fidl::encoding::HandleType<fidl::Channel, { fidl::ObjectType::CHANNEL.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect));
1265 fidl::decode!(fidl::encoding::HandleType<fidl::Channel, { fidl::ObjectType::CHANNEL.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, val_ref, decoder, inner_offset, inner_depth)?;
1266 if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
1267 {
1268 return Err(fidl::Error::InvalidNumBytesInEnvelope);
1269 }
1270 if handles_before != decoder.remaining_handles() + (num_handles as usize) {
1271 return Err(fidl::Error::InvalidNumHandlesInEnvelope);
1272 }
1273 }
1274
1275 next_offset += envelope_size;
1276 _next_ordinal_to_read += 1;
1277 if next_offset >= end_offset {
1278 return Ok(());
1279 }
1280
1281 while _next_ordinal_to_read < 4 {
1283 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
1284 _next_ordinal_to_read += 1;
1285 next_offset += envelope_size;
1286 }
1287
1288 let next_out_of_line = decoder.next_out_of_line();
1289 let handles_before = decoder.remaining_handles();
1290 if let Some((inlined, num_bytes, num_handles)) =
1291 fidl::encoding::decode_envelope_header(decoder, next_offset)?
1292 {
1293 let member_inline_size = <fidl::encoding::BoundedString<1024> as fidl::encoding::TypeMarker>::inline_size(decoder.context);
1294 if inlined != (member_inline_size <= 4) {
1295 return Err(fidl::Error::InvalidInlineBitInEnvelope);
1296 }
1297 let inner_offset;
1298 let mut inner_depth = depth.clone();
1299 if inlined {
1300 decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
1301 inner_offset = next_offset;
1302 } else {
1303 inner_offset = decoder.out_of_line_offset(member_inline_size)?;
1304 inner_depth.increment()?;
1305 }
1306 let val_ref = self.name.get_or_insert_with(|| {
1307 fidl::new_empty!(
1308 fidl::encoding::BoundedString<1024>,
1309 fidl::encoding::DefaultFuchsiaResourceDialect
1310 )
1311 });
1312 fidl::decode!(
1313 fidl::encoding::BoundedString<1024>,
1314 fidl::encoding::DefaultFuchsiaResourceDialect,
1315 val_ref,
1316 decoder,
1317 inner_offset,
1318 inner_depth
1319 )?;
1320 if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
1321 {
1322 return Err(fidl::Error::InvalidNumBytesInEnvelope);
1323 }
1324 if handles_before != decoder.remaining_handles() + (num_handles as usize) {
1325 return Err(fidl::Error::InvalidNumHandlesInEnvelope);
1326 }
1327 }
1328
1329 next_offset += envelope_size;
1330 _next_ordinal_to_read += 1;
1331 if next_offset >= end_offset {
1332 return Ok(());
1333 }
1334
1335 while _next_ordinal_to_read < 5 {
1337 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
1338 _next_ordinal_to_read += 1;
1339 next_offset += envelope_size;
1340 }
1341
1342 let next_out_of_line = decoder.next_out_of_line();
1343 let handles_before = decoder.remaining_handles();
1344 if let Some((inlined, num_bytes, num_handles)) =
1345 fidl::encoding::decode_envelope_header(decoder, next_offset)?
1346 {
1347 let member_inline_size = <fidl::encoding::HandleType<
1348 fidl::Counter,
1349 { fidl::ObjectType::COUNTER.into_raw() },
1350 2147483648,
1351 > as fidl::encoding::TypeMarker>::inline_size(
1352 decoder.context
1353 );
1354 if inlined != (member_inline_size <= 4) {
1355 return Err(fidl::Error::InvalidInlineBitInEnvelope);
1356 }
1357 let inner_offset;
1358 let mut inner_depth = depth.clone();
1359 if inlined {
1360 decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
1361 inner_offset = next_offset;
1362 } else {
1363 inner_offset = decoder.out_of_line_offset(member_inline_size)?;
1364 inner_depth.increment()?;
1365 }
1366 let val_ref =
1367 self.counter.get_or_insert_with(|| fidl::new_empty!(fidl::encoding::HandleType<fidl::Counter, { fidl::ObjectType::COUNTER.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect));
1368 fidl::decode!(fidl::encoding::HandleType<fidl::Counter, { fidl::ObjectType::COUNTER.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, val_ref, decoder, inner_offset, inner_depth)?;
1369 if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
1370 {
1371 return Err(fidl::Error::InvalidNumBytesInEnvelope);
1372 }
1373 if handles_before != decoder.remaining_handles() + (num_handles as usize) {
1374 return Err(fidl::Error::InvalidNumHandlesInEnvelope);
1375 }
1376 }
1377
1378 next_offset += envelope_size;
1379
1380 while next_offset < end_offset {
1382 _next_ordinal_to_read += 1;
1383 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
1384 next_offset += envelope_size;
1385 }
1386
1387 Ok(())
1388 }
1389 }
1390
1391 impl ManagerRegisterWakeWatcherRequest {
1392 #[inline(always)]
1393 fn max_ordinal_present(&self) -> u64 {
1394 if let Some(_) = self.watcher {
1395 return 1;
1396 }
1397 0
1398 }
1399 }
1400
1401 impl fidl::encoding::ResourceTypeMarker for ManagerRegisterWakeWatcherRequest {
1402 type Borrowed<'a> = &'a mut Self;
1403 fn take_or_borrow<'a>(
1404 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
1405 ) -> Self::Borrowed<'a> {
1406 value
1407 }
1408 }
1409
1410 unsafe impl fidl::encoding::TypeMarker for ManagerRegisterWakeWatcherRequest {
1411 type Owned = Self;
1412
1413 #[inline(always)]
1414 fn inline_align(_context: fidl::encoding::Context) -> usize {
1415 8
1416 }
1417
1418 #[inline(always)]
1419 fn inline_size(_context: fidl::encoding::Context) -> usize {
1420 16
1421 }
1422 }
1423
1424 unsafe impl
1425 fidl::encoding::Encode<
1426 ManagerRegisterWakeWatcherRequest,
1427 fidl::encoding::DefaultFuchsiaResourceDialect,
1428 > for &mut ManagerRegisterWakeWatcherRequest
1429 {
1430 unsafe fn encode(
1431 self,
1432 encoder: &mut fidl::encoding::Encoder<
1433 '_,
1434 fidl::encoding::DefaultFuchsiaResourceDialect,
1435 >,
1436 offset: usize,
1437 mut depth: fidl::encoding::Depth,
1438 ) -> fidl::Result<()> {
1439 encoder.debug_check_bounds::<ManagerRegisterWakeWatcherRequest>(offset);
1440 let max_ordinal: u64 = self.max_ordinal_present();
1442 encoder.write_num(max_ordinal, offset);
1443 encoder.write_num(fidl::encoding::ALLOC_PRESENT_U64, offset + 8);
1444 if max_ordinal == 0 {
1446 return Ok(());
1447 }
1448 depth.increment()?;
1449 let envelope_size = 8;
1450 let bytes_len = max_ordinal as usize * envelope_size;
1451 #[allow(unused_variables)]
1452 let offset = encoder.out_of_line_offset(bytes_len);
1453 let mut _prev_end_offset: usize = 0;
1454 if 1 > max_ordinal {
1455 return Ok(());
1456 }
1457
1458 let cur_offset: usize = (1 - 1) * envelope_size;
1461
1462 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
1464
1465 fidl::encoding::encode_in_envelope_optional::<
1470 fidl::encoding::HandleType<
1471 fidl::EventPair,
1472 { fidl::ObjectType::EVENTPAIR.into_raw() },
1473 2147483648,
1474 >,
1475 fidl::encoding::DefaultFuchsiaResourceDialect,
1476 >(
1477 self.watcher.as_mut().map(
1478 <fidl::encoding::HandleType<
1479 fidl::EventPair,
1480 { fidl::ObjectType::EVENTPAIR.into_raw() },
1481 2147483648,
1482 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow,
1483 ),
1484 encoder,
1485 offset + cur_offset,
1486 depth,
1487 )?;
1488
1489 _prev_end_offset = cur_offset + envelope_size;
1490
1491 Ok(())
1492 }
1493 }
1494
1495 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
1496 for ManagerRegisterWakeWatcherRequest
1497 {
1498 #[inline(always)]
1499 fn new_empty() -> Self {
1500 Self::default()
1501 }
1502
1503 unsafe fn decode(
1504 &mut self,
1505 decoder: &mut fidl::encoding::Decoder<
1506 '_,
1507 fidl::encoding::DefaultFuchsiaResourceDialect,
1508 >,
1509 offset: usize,
1510 mut depth: fidl::encoding::Depth,
1511 ) -> fidl::Result<()> {
1512 decoder.debug_check_bounds::<Self>(offset);
1513 let len = match fidl::encoding::decode_vector_header(decoder, offset)? {
1514 None => return Err(fidl::Error::NotNullable),
1515 Some(len) => len,
1516 };
1517 if len == 0 {
1519 return Ok(());
1520 };
1521 depth.increment()?;
1522 let envelope_size = 8;
1523 let bytes_len = len * envelope_size;
1524 let offset = decoder.out_of_line_offset(bytes_len)?;
1525 let mut _next_ordinal_to_read = 0;
1527 let mut next_offset = offset;
1528 let end_offset = offset + bytes_len;
1529 _next_ordinal_to_read += 1;
1530 if next_offset >= end_offset {
1531 return Ok(());
1532 }
1533
1534 while _next_ordinal_to_read < 1 {
1536 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
1537 _next_ordinal_to_read += 1;
1538 next_offset += envelope_size;
1539 }
1540
1541 let next_out_of_line = decoder.next_out_of_line();
1542 let handles_before = decoder.remaining_handles();
1543 if let Some((inlined, num_bytes, num_handles)) =
1544 fidl::encoding::decode_envelope_header(decoder, next_offset)?
1545 {
1546 let member_inline_size = <fidl::encoding::HandleType<
1547 fidl::EventPair,
1548 { fidl::ObjectType::EVENTPAIR.into_raw() },
1549 2147483648,
1550 > as fidl::encoding::TypeMarker>::inline_size(
1551 decoder.context
1552 );
1553 if inlined != (member_inline_size <= 4) {
1554 return Err(fidl::Error::InvalidInlineBitInEnvelope);
1555 }
1556 let inner_offset;
1557 let mut inner_depth = depth.clone();
1558 if inlined {
1559 decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
1560 inner_offset = next_offset;
1561 } else {
1562 inner_offset = decoder.out_of_line_offset(member_inline_size)?;
1563 inner_depth.increment()?;
1564 }
1565 let val_ref =
1566 self.watcher.get_or_insert_with(|| fidl::new_empty!(fidl::encoding::HandleType<fidl::EventPair, { fidl::ObjectType::EVENTPAIR.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect));
1567 fidl::decode!(fidl::encoding::HandleType<fidl::EventPair, { fidl::ObjectType::EVENTPAIR.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, val_ref, decoder, inner_offset, inner_depth)?;
1568 if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
1569 {
1570 return Err(fidl::Error::InvalidNumBytesInEnvelope);
1571 }
1572 if handles_before != decoder.remaining_handles() + (num_handles as usize) {
1573 return Err(fidl::Error::InvalidNumHandlesInEnvelope);
1574 }
1575 }
1576
1577 next_offset += envelope_size;
1578
1579 while next_offset < end_offset {
1581 _next_ordinal_to_read += 1;
1582 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
1583 next_offset += envelope_size;
1584 }
1585
1586 Ok(())
1587 }
1588 }
1589
1590 impl ManagerSuspendContainerRequest {
1591 #[inline(always)]
1592 fn max_ordinal_present(&self) -> u64 {
1593 if let Some(_) = self.wake_locks {
1594 return 2;
1595 }
1596 if let Some(_) = self.container_job {
1597 return 1;
1598 }
1599 0
1600 }
1601 }
1602
1603 impl fidl::encoding::ResourceTypeMarker for ManagerSuspendContainerRequest {
1604 type Borrowed<'a> = &'a mut Self;
1605 fn take_or_borrow<'a>(
1606 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
1607 ) -> Self::Borrowed<'a> {
1608 value
1609 }
1610 }
1611
1612 unsafe impl fidl::encoding::TypeMarker for ManagerSuspendContainerRequest {
1613 type Owned = Self;
1614
1615 #[inline(always)]
1616 fn inline_align(_context: fidl::encoding::Context) -> usize {
1617 8
1618 }
1619
1620 #[inline(always)]
1621 fn inline_size(_context: fidl::encoding::Context) -> usize {
1622 16
1623 }
1624 }
1625
1626 unsafe impl
1627 fidl::encoding::Encode<
1628 ManagerSuspendContainerRequest,
1629 fidl::encoding::DefaultFuchsiaResourceDialect,
1630 > for &mut ManagerSuspendContainerRequest
1631 {
1632 unsafe fn encode(
1633 self,
1634 encoder: &mut fidl::encoding::Encoder<
1635 '_,
1636 fidl::encoding::DefaultFuchsiaResourceDialect,
1637 >,
1638 offset: usize,
1639 mut depth: fidl::encoding::Depth,
1640 ) -> fidl::Result<()> {
1641 encoder.debug_check_bounds::<ManagerSuspendContainerRequest>(offset);
1642 let max_ordinal: u64 = self.max_ordinal_present();
1644 encoder.write_num(max_ordinal, offset);
1645 encoder.write_num(fidl::encoding::ALLOC_PRESENT_U64, offset + 8);
1646 if max_ordinal == 0 {
1648 return Ok(());
1649 }
1650 depth.increment()?;
1651 let envelope_size = 8;
1652 let bytes_len = max_ordinal as usize * envelope_size;
1653 #[allow(unused_variables)]
1654 let offset = encoder.out_of_line_offset(bytes_len);
1655 let mut _prev_end_offset: usize = 0;
1656 if 1 > max_ordinal {
1657 return Ok(());
1658 }
1659
1660 let cur_offset: usize = (1 - 1) * envelope_size;
1663
1664 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
1666
1667 fidl::encoding::encode_in_envelope_optional::<
1672 fidl::encoding::HandleType<
1673 fidl::Job,
1674 { fidl::ObjectType::JOB.into_raw() },
1675 2147483648,
1676 >,
1677 fidl::encoding::DefaultFuchsiaResourceDialect,
1678 >(
1679 self.container_job.as_mut().map(
1680 <fidl::encoding::HandleType<
1681 fidl::Job,
1682 { fidl::ObjectType::JOB.into_raw() },
1683 2147483648,
1684 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow,
1685 ),
1686 encoder,
1687 offset + cur_offset,
1688 depth,
1689 )?;
1690
1691 _prev_end_offset = cur_offset + envelope_size;
1692 if 2 > max_ordinal {
1693 return Ok(());
1694 }
1695
1696 let cur_offset: usize = (2 - 1) * envelope_size;
1699
1700 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
1702
1703 fidl::encoding::encode_in_envelope_optional::<
1708 fidl::encoding::HandleType<
1709 fidl::EventPair,
1710 { fidl::ObjectType::EVENTPAIR.into_raw() },
1711 2147483648,
1712 >,
1713 fidl::encoding::DefaultFuchsiaResourceDialect,
1714 >(
1715 self.wake_locks.as_mut().map(
1716 <fidl::encoding::HandleType<
1717 fidl::EventPair,
1718 { fidl::ObjectType::EVENTPAIR.into_raw() },
1719 2147483648,
1720 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow,
1721 ),
1722 encoder,
1723 offset + cur_offset,
1724 depth,
1725 )?;
1726
1727 _prev_end_offset = cur_offset + envelope_size;
1728
1729 Ok(())
1730 }
1731 }
1732
1733 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
1734 for ManagerSuspendContainerRequest
1735 {
1736 #[inline(always)]
1737 fn new_empty() -> Self {
1738 Self::default()
1739 }
1740
1741 unsafe fn decode(
1742 &mut self,
1743 decoder: &mut fidl::encoding::Decoder<
1744 '_,
1745 fidl::encoding::DefaultFuchsiaResourceDialect,
1746 >,
1747 offset: usize,
1748 mut depth: fidl::encoding::Depth,
1749 ) -> fidl::Result<()> {
1750 decoder.debug_check_bounds::<Self>(offset);
1751 let len = match fidl::encoding::decode_vector_header(decoder, offset)? {
1752 None => return Err(fidl::Error::NotNullable),
1753 Some(len) => len,
1754 };
1755 if len == 0 {
1757 return Ok(());
1758 };
1759 depth.increment()?;
1760 let envelope_size = 8;
1761 let bytes_len = len * envelope_size;
1762 let offset = decoder.out_of_line_offset(bytes_len)?;
1763 let mut _next_ordinal_to_read = 0;
1765 let mut next_offset = offset;
1766 let end_offset = offset + bytes_len;
1767 _next_ordinal_to_read += 1;
1768 if next_offset >= end_offset {
1769 return Ok(());
1770 }
1771
1772 while _next_ordinal_to_read < 1 {
1774 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
1775 _next_ordinal_to_read += 1;
1776 next_offset += envelope_size;
1777 }
1778
1779 let next_out_of_line = decoder.next_out_of_line();
1780 let handles_before = decoder.remaining_handles();
1781 if let Some((inlined, num_bytes, num_handles)) =
1782 fidl::encoding::decode_envelope_header(decoder, next_offset)?
1783 {
1784 let member_inline_size = <fidl::encoding::HandleType<
1785 fidl::Job,
1786 { fidl::ObjectType::JOB.into_raw() },
1787 2147483648,
1788 > as fidl::encoding::TypeMarker>::inline_size(
1789 decoder.context
1790 );
1791 if inlined != (member_inline_size <= 4) {
1792 return Err(fidl::Error::InvalidInlineBitInEnvelope);
1793 }
1794 let inner_offset;
1795 let mut inner_depth = depth.clone();
1796 if inlined {
1797 decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
1798 inner_offset = next_offset;
1799 } else {
1800 inner_offset = decoder.out_of_line_offset(member_inline_size)?;
1801 inner_depth.increment()?;
1802 }
1803 let val_ref =
1804 self.container_job.get_or_insert_with(|| fidl::new_empty!(fidl::encoding::HandleType<fidl::Job, { fidl::ObjectType::JOB.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect));
1805 fidl::decode!(fidl::encoding::HandleType<fidl::Job, { fidl::ObjectType::JOB.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, val_ref, decoder, inner_offset, inner_depth)?;
1806 if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
1807 {
1808 return Err(fidl::Error::InvalidNumBytesInEnvelope);
1809 }
1810 if handles_before != decoder.remaining_handles() + (num_handles as usize) {
1811 return Err(fidl::Error::InvalidNumHandlesInEnvelope);
1812 }
1813 }
1814
1815 next_offset += envelope_size;
1816 _next_ordinal_to_read += 1;
1817 if next_offset >= end_offset {
1818 return Ok(());
1819 }
1820
1821 while _next_ordinal_to_read < 2 {
1823 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
1824 _next_ordinal_to_read += 1;
1825 next_offset += envelope_size;
1826 }
1827
1828 let next_out_of_line = decoder.next_out_of_line();
1829 let handles_before = decoder.remaining_handles();
1830 if let Some((inlined, num_bytes, num_handles)) =
1831 fidl::encoding::decode_envelope_header(decoder, next_offset)?
1832 {
1833 let member_inline_size = <fidl::encoding::HandleType<
1834 fidl::EventPair,
1835 { fidl::ObjectType::EVENTPAIR.into_raw() },
1836 2147483648,
1837 > as fidl::encoding::TypeMarker>::inline_size(
1838 decoder.context
1839 );
1840 if inlined != (member_inline_size <= 4) {
1841 return Err(fidl::Error::InvalidInlineBitInEnvelope);
1842 }
1843 let inner_offset;
1844 let mut inner_depth = depth.clone();
1845 if inlined {
1846 decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
1847 inner_offset = next_offset;
1848 } else {
1849 inner_offset = decoder.out_of_line_offset(member_inline_size)?;
1850 inner_depth.increment()?;
1851 }
1852 let val_ref =
1853 self.wake_locks.get_or_insert_with(|| fidl::new_empty!(fidl::encoding::HandleType<fidl::EventPair, { fidl::ObjectType::EVENTPAIR.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect));
1854 fidl::decode!(fidl::encoding::HandleType<fidl::EventPair, { fidl::ObjectType::EVENTPAIR.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, val_ref, decoder, inner_offset, inner_depth)?;
1855 if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
1856 {
1857 return Err(fidl::Error::InvalidNumBytesInEnvelope);
1858 }
1859 if handles_before != decoder.remaining_handles() + (num_handles as usize) {
1860 return Err(fidl::Error::InvalidNumHandlesInEnvelope);
1861 }
1862 }
1863
1864 next_offset += envelope_size;
1865
1866 while next_offset < end_offset {
1868 _next_ordinal_to_read += 1;
1869 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
1870 next_offset += envelope_size;
1871 }
1872
1873 Ok(())
1874 }
1875 }
1876}