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_test_rolemanager_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, PartialEq)]
15pub struct RealmFactoryCreateRealmRequest {
16 pub options: RealmOptions,
17 pub realm_server: fidl::endpoints::ServerEnd<fidl_fuchsia_testing_harness::RealmProxy_Marker>,
18}
19
20impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
21 for RealmFactoryCreateRealmRequest
22{
23}
24
25#[derive(Debug, Default, PartialEq)]
27pub struct RealmOptions {
28 #[doc(hidden)]
29 pub __source_breaking: fidl::marker::SourceBreaking,
30}
31
32impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for RealmOptions {}
33
34#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
35pub struct RealmFactoryMarker;
36
37impl fidl::endpoints::ProtocolMarker for RealmFactoryMarker {
38 type Proxy = RealmFactoryProxy;
39 type RequestStream = RealmFactoryRequestStream;
40 #[cfg(target_os = "fuchsia")]
41 type SynchronousProxy = RealmFactorySynchronousProxy;
42
43 const DEBUG_NAME: &'static str = "test.rolemanager.RealmFactory";
44}
45impl fidl::endpoints::DiscoverableProtocolMarker for RealmFactoryMarker {}
46pub type RealmFactoryCreateRealmResult = Result<(), fidl_fuchsia_testing_harness::OperationError>;
47
48pub trait RealmFactoryProxyInterface: Send + Sync {
49 type CreateRealmResponseFut: std::future::Future<Output = Result<RealmFactoryCreateRealmResult, fidl::Error>>
50 + Send;
51 fn r#create_realm(
52 &self,
53 options: RealmOptions,
54 realm_server: fidl::endpoints::ServerEnd<fidl_fuchsia_testing_harness::RealmProxy_Marker>,
55 ) -> Self::CreateRealmResponseFut;
56}
57#[derive(Debug)]
58#[cfg(target_os = "fuchsia")]
59pub struct RealmFactorySynchronousProxy {
60 client: fidl::client::sync::Client,
61}
62
63#[cfg(target_os = "fuchsia")]
64impl fidl::endpoints::SynchronousProxy for RealmFactorySynchronousProxy {
65 type Proxy = RealmFactoryProxy;
66 type Protocol = RealmFactoryMarker;
67
68 fn from_channel(inner: fidl::Channel) -> Self {
69 Self::new(inner)
70 }
71
72 fn into_channel(self) -> fidl::Channel {
73 self.client.into_channel()
74 }
75
76 fn as_channel(&self) -> &fidl::Channel {
77 self.client.as_channel()
78 }
79}
80
81#[cfg(target_os = "fuchsia")]
82impl RealmFactorySynchronousProxy {
83 pub fn new(channel: fidl::Channel) -> Self {
84 let protocol_name = <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
85 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
86 }
87
88 pub fn into_channel(self) -> fidl::Channel {
89 self.client.into_channel()
90 }
91
92 pub fn wait_for_event(
95 &self,
96 deadline: zx::MonotonicInstant,
97 ) -> Result<RealmFactoryEvent, fidl::Error> {
98 RealmFactoryEvent::decode(self.client.wait_for_event(deadline)?)
99 }
100
101 pub fn r#create_realm(
103 &self,
104 mut options: RealmOptions,
105 mut realm_server: fidl::endpoints::ServerEnd<
106 fidl_fuchsia_testing_harness::RealmProxy_Marker,
107 >,
108 ___deadline: zx::MonotonicInstant,
109 ) -> Result<RealmFactoryCreateRealmResult, fidl::Error> {
110 let _response = self
111 .client
112 .send_query::<RealmFactoryCreateRealmRequest, fidl::encoding::FlexibleResultType<
113 fidl::encoding::EmptyStruct,
114 fidl_fuchsia_testing_harness::OperationError,
115 >>(
116 (&mut options, realm_server),
117 0x53ebab85149ca793,
118 fidl::encoding::DynamicFlags::FLEXIBLE,
119 ___deadline,
120 )?
121 .into_result::<RealmFactoryMarker>("create_realm")?;
122 Ok(_response.map(|x| x))
123 }
124}
125
126#[cfg(target_os = "fuchsia")]
127impl From<RealmFactorySynchronousProxy> for zx::Handle {
128 fn from(value: RealmFactorySynchronousProxy) -> Self {
129 value.into_channel().into()
130 }
131}
132
133#[cfg(target_os = "fuchsia")]
134impl From<fidl::Channel> for RealmFactorySynchronousProxy {
135 fn from(value: fidl::Channel) -> Self {
136 Self::new(value)
137 }
138}
139
140#[derive(Debug, Clone)]
141pub struct RealmFactoryProxy {
142 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
143}
144
145impl fidl::endpoints::Proxy for RealmFactoryProxy {
146 type Protocol = RealmFactoryMarker;
147
148 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
149 Self::new(inner)
150 }
151
152 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
153 self.client.into_channel().map_err(|client| Self { client })
154 }
155
156 fn as_channel(&self) -> &::fidl::AsyncChannel {
157 self.client.as_channel()
158 }
159}
160
161impl RealmFactoryProxy {
162 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
164 let protocol_name = <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
165 Self { client: fidl::client::Client::new(channel, protocol_name) }
166 }
167
168 pub fn take_event_stream(&self) -> RealmFactoryEventStream {
174 RealmFactoryEventStream { event_receiver: self.client.take_event_receiver() }
175 }
176
177 pub fn r#create_realm(
179 &self,
180 mut options: RealmOptions,
181 mut realm_server: fidl::endpoints::ServerEnd<
182 fidl_fuchsia_testing_harness::RealmProxy_Marker,
183 >,
184 ) -> fidl::client::QueryResponseFut<
185 RealmFactoryCreateRealmResult,
186 fidl::encoding::DefaultFuchsiaResourceDialect,
187 > {
188 RealmFactoryProxyInterface::r#create_realm(self, options, realm_server)
189 }
190}
191
192impl RealmFactoryProxyInterface for RealmFactoryProxy {
193 type CreateRealmResponseFut = fidl::client::QueryResponseFut<
194 RealmFactoryCreateRealmResult,
195 fidl::encoding::DefaultFuchsiaResourceDialect,
196 >;
197 fn r#create_realm(
198 &self,
199 mut options: RealmOptions,
200 mut realm_server: fidl::endpoints::ServerEnd<
201 fidl_fuchsia_testing_harness::RealmProxy_Marker,
202 >,
203 ) -> Self::CreateRealmResponseFut {
204 fn _decode(
205 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
206 ) -> Result<RealmFactoryCreateRealmResult, fidl::Error> {
207 let _response = fidl::client::decode_transaction_body::<
208 fidl::encoding::FlexibleResultType<
209 fidl::encoding::EmptyStruct,
210 fidl_fuchsia_testing_harness::OperationError,
211 >,
212 fidl::encoding::DefaultFuchsiaResourceDialect,
213 0x53ebab85149ca793,
214 >(_buf?)?
215 .into_result::<RealmFactoryMarker>("create_realm")?;
216 Ok(_response.map(|x| x))
217 }
218 self.client
219 .send_query_and_decode::<RealmFactoryCreateRealmRequest, RealmFactoryCreateRealmResult>(
220 (&mut options, realm_server),
221 0x53ebab85149ca793,
222 fidl::encoding::DynamicFlags::FLEXIBLE,
223 _decode,
224 )
225 }
226}
227
228pub struct RealmFactoryEventStream {
229 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
230}
231
232impl std::marker::Unpin for RealmFactoryEventStream {}
233
234impl futures::stream::FusedStream for RealmFactoryEventStream {
235 fn is_terminated(&self) -> bool {
236 self.event_receiver.is_terminated()
237 }
238}
239
240impl futures::Stream for RealmFactoryEventStream {
241 type Item = Result<RealmFactoryEvent, fidl::Error>;
242
243 fn poll_next(
244 mut self: std::pin::Pin<&mut Self>,
245 cx: &mut std::task::Context<'_>,
246 ) -> std::task::Poll<Option<Self::Item>> {
247 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
248 &mut self.event_receiver,
249 cx
250 )?) {
251 Some(buf) => std::task::Poll::Ready(Some(RealmFactoryEvent::decode(buf))),
252 None => std::task::Poll::Ready(None),
253 }
254 }
255}
256
257#[derive(Debug)]
258pub enum RealmFactoryEvent {
259 #[non_exhaustive]
260 _UnknownEvent {
261 ordinal: u64,
263 },
264}
265
266impl RealmFactoryEvent {
267 fn decode(
269 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
270 ) -> Result<RealmFactoryEvent, fidl::Error> {
271 let (bytes, _handles) = buf.split_mut();
272 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
273 debug_assert_eq!(tx_header.tx_id, 0);
274 match tx_header.ordinal {
275 _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
276 Ok(RealmFactoryEvent::_UnknownEvent { ordinal: tx_header.ordinal })
277 }
278 _ => Err(fidl::Error::UnknownOrdinal {
279 ordinal: tx_header.ordinal,
280 protocol_name: <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
281 }),
282 }
283 }
284}
285
286pub struct RealmFactoryRequestStream {
288 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
289 is_terminated: bool,
290}
291
292impl std::marker::Unpin for RealmFactoryRequestStream {}
293
294impl futures::stream::FusedStream for RealmFactoryRequestStream {
295 fn is_terminated(&self) -> bool {
296 self.is_terminated
297 }
298}
299
300impl fidl::endpoints::RequestStream for RealmFactoryRequestStream {
301 type Protocol = RealmFactoryMarker;
302 type ControlHandle = RealmFactoryControlHandle;
303
304 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
305 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
306 }
307
308 fn control_handle(&self) -> Self::ControlHandle {
309 RealmFactoryControlHandle { inner: self.inner.clone() }
310 }
311
312 fn into_inner(
313 self,
314 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
315 {
316 (self.inner, self.is_terminated)
317 }
318
319 fn from_inner(
320 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
321 is_terminated: bool,
322 ) -> Self {
323 Self { inner, is_terminated }
324 }
325}
326
327impl futures::Stream for RealmFactoryRequestStream {
328 type Item = Result<RealmFactoryRequest, fidl::Error>;
329
330 fn poll_next(
331 mut self: std::pin::Pin<&mut Self>,
332 cx: &mut std::task::Context<'_>,
333 ) -> std::task::Poll<Option<Self::Item>> {
334 let this = &mut *self;
335 if this.inner.check_shutdown(cx) {
336 this.is_terminated = true;
337 return std::task::Poll::Ready(None);
338 }
339 if this.is_terminated {
340 panic!("polled RealmFactoryRequestStream after completion");
341 }
342 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
343 |bytes, handles| {
344 match this.inner.channel().read_etc(cx, bytes, handles) {
345 std::task::Poll::Ready(Ok(())) => {}
346 std::task::Poll::Pending => return std::task::Poll::Pending,
347 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
348 this.is_terminated = true;
349 return std::task::Poll::Ready(None);
350 }
351 std::task::Poll::Ready(Err(e)) => {
352 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
353 e.into(),
354 ))))
355 }
356 }
357
358 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
360
361 std::task::Poll::Ready(Some(match header.ordinal {
362 0x53ebab85149ca793 => {
363 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
364 let mut req = fidl::new_empty!(
365 RealmFactoryCreateRealmRequest,
366 fidl::encoding::DefaultFuchsiaResourceDialect
367 );
368 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<RealmFactoryCreateRealmRequest>(&header, _body_bytes, handles, &mut req)?;
369 let control_handle =
370 RealmFactoryControlHandle { inner: this.inner.clone() };
371 Ok(RealmFactoryRequest::CreateRealm {
372 options: req.options,
373 realm_server: req.realm_server,
374
375 responder: RealmFactoryCreateRealmResponder {
376 control_handle: std::mem::ManuallyDrop::new(control_handle),
377 tx_id: header.tx_id,
378 },
379 })
380 }
381 _ if header.tx_id == 0
382 && header
383 .dynamic_flags()
384 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
385 {
386 Ok(RealmFactoryRequest::_UnknownMethod {
387 ordinal: header.ordinal,
388 control_handle: RealmFactoryControlHandle { inner: this.inner.clone() },
389 method_type: fidl::MethodType::OneWay,
390 })
391 }
392 _ if header
393 .dynamic_flags()
394 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
395 {
396 this.inner.send_framework_err(
397 fidl::encoding::FrameworkErr::UnknownMethod,
398 header.tx_id,
399 header.ordinal,
400 header.dynamic_flags(),
401 (bytes, handles),
402 )?;
403 Ok(RealmFactoryRequest::_UnknownMethod {
404 ordinal: header.ordinal,
405 control_handle: RealmFactoryControlHandle { inner: this.inner.clone() },
406 method_type: fidl::MethodType::TwoWay,
407 })
408 }
409 _ => Err(fidl::Error::UnknownOrdinal {
410 ordinal: header.ordinal,
411 protocol_name:
412 <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
413 }),
414 }))
415 },
416 )
417 }
418}
419
420#[derive(Debug)]
421pub enum RealmFactoryRequest {
422 CreateRealm {
424 options: RealmOptions,
425 realm_server: fidl::endpoints::ServerEnd<fidl_fuchsia_testing_harness::RealmProxy_Marker>,
426 responder: RealmFactoryCreateRealmResponder,
427 },
428 #[non_exhaustive]
430 _UnknownMethod {
431 ordinal: u64,
433 control_handle: RealmFactoryControlHandle,
434 method_type: fidl::MethodType,
435 },
436}
437
438impl RealmFactoryRequest {
439 #[allow(irrefutable_let_patterns)]
440 pub fn into_create_realm(
441 self,
442 ) -> Option<(
443 RealmOptions,
444 fidl::endpoints::ServerEnd<fidl_fuchsia_testing_harness::RealmProxy_Marker>,
445 RealmFactoryCreateRealmResponder,
446 )> {
447 if let RealmFactoryRequest::CreateRealm { options, realm_server, responder } = self {
448 Some((options, realm_server, responder))
449 } else {
450 None
451 }
452 }
453
454 pub fn method_name(&self) -> &'static str {
456 match *self {
457 RealmFactoryRequest::CreateRealm { .. } => "create_realm",
458 RealmFactoryRequest::_UnknownMethod {
459 method_type: fidl::MethodType::OneWay, ..
460 } => "unknown one-way method",
461 RealmFactoryRequest::_UnknownMethod {
462 method_type: fidl::MethodType::TwoWay, ..
463 } => "unknown two-way method",
464 }
465 }
466}
467
468#[derive(Debug, Clone)]
469pub struct RealmFactoryControlHandle {
470 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
471}
472
473impl fidl::endpoints::ControlHandle for RealmFactoryControlHandle {
474 fn shutdown(&self) {
475 self.inner.shutdown()
476 }
477 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
478 self.inner.shutdown_with_epitaph(status)
479 }
480
481 fn is_closed(&self) -> bool {
482 self.inner.channel().is_closed()
483 }
484 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
485 self.inner.channel().on_closed()
486 }
487
488 #[cfg(target_os = "fuchsia")]
489 fn signal_peer(
490 &self,
491 clear_mask: zx::Signals,
492 set_mask: zx::Signals,
493 ) -> Result<(), zx_status::Status> {
494 use fidl::Peered;
495 self.inner.channel().signal_peer(clear_mask, set_mask)
496 }
497}
498
499impl RealmFactoryControlHandle {}
500
501#[must_use = "FIDL methods require a response to be sent"]
502#[derive(Debug)]
503pub struct RealmFactoryCreateRealmResponder {
504 control_handle: std::mem::ManuallyDrop<RealmFactoryControlHandle>,
505 tx_id: u32,
506}
507
508impl std::ops::Drop for RealmFactoryCreateRealmResponder {
512 fn drop(&mut self) {
513 self.control_handle.shutdown();
514 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
516 }
517}
518
519impl fidl::endpoints::Responder for RealmFactoryCreateRealmResponder {
520 type ControlHandle = RealmFactoryControlHandle;
521
522 fn control_handle(&self) -> &RealmFactoryControlHandle {
523 &self.control_handle
524 }
525
526 fn drop_without_shutdown(mut self) {
527 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
529 std::mem::forget(self);
531 }
532}
533
534impl RealmFactoryCreateRealmResponder {
535 pub fn send(
539 self,
540 mut result: Result<(), fidl_fuchsia_testing_harness::OperationError>,
541 ) -> Result<(), fidl::Error> {
542 let _result = self.send_raw(result);
543 if _result.is_err() {
544 self.control_handle.shutdown();
545 }
546 self.drop_without_shutdown();
547 _result
548 }
549
550 pub fn send_no_shutdown_on_err(
552 self,
553 mut result: Result<(), fidl_fuchsia_testing_harness::OperationError>,
554 ) -> Result<(), fidl::Error> {
555 let _result = self.send_raw(result);
556 self.drop_without_shutdown();
557 _result
558 }
559
560 fn send_raw(
561 &self,
562 mut result: Result<(), fidl_fuchsia_testing_harness::OperationError>,
563 ) -> Result<(), fidl::Error> {
564 self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
565 fidl::encoding::EmptyStruct,
566 fidl_fuchsia_testing_harness::OperationError,
567 >>(
568 fidl::encoding::FlexibleResult::new(result),
569 self.tx_id,
570 0x53ebab85149ca793,
571 fidl::encoding::DynamicFlags::FLEXIBLE,
572 )
573 }
574}
575
576mod internal {
577 use super::*;
578
579 impl fidl::encoding::ResourceTypeMarker for RealmFactoryCreateRealmRequest {
580 type Borrowed<'a> = &'a mut Self;
581 fn take_or_borrow<'a>(
582 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
583 ) -> Self::Borrowed<'a> {
584 value
585 }
586 }
587
588 unsafe impl fidl::encoding::TypeMarker for RealmFactoryCreateRealmRequest {
589 type Owned = Self;
590
591 #[inline(always)]
592 fn inline_align(_context: fidl::encoding::Context) -> usize {
593 8
594 }
595
596 #[inline(always)]
597 fn inline_size(_context: fidl::encoding::Context) -> usize {
598 24
599 }
600 }
601
602 unsafe impl
603 fidl::encoding::Encode<
604 RealmFactoryCreateRealmRequest,
605 fidl::encoding::DefaultFuchsiaResourceDialect,
606 > for &mut RealmFactoryCreateRealmRequest
607 {
608 #[inline]
609 unsafe fn encode(
610 self,
611 encoder: &mut fidl::encoding::Encoder<
612 '_,
613 fidl::encoding::DefaultFuchsiaResourceDialect,
614 >,
615 offset: usize,
616 _depth: fidl::encoding::Depth,
617 ) -> fidl::Result<()> {
618 encoder.debug_check_bounds::<RealmFactoryCreateRealmRequest>(offset);
619 fidl::encoding::Encode::<
621 RealmFactoryCreateRealmRequest,
622 fidl::encoding::DefaultFuchsiaResourceDialect,
623 >::encode(
624 (
625 <RealmOptions as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
626 &mut self.options,
627 ),
628 <fidl::encoding::Endpoint<
629 fidl::endpoints::ServerEnd<fidl_fuchsia_testing_harness::RealmProxy_Marker>,
630 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
631 &mut self.realm_server,
632 ),
633 ),
634 encoder,
635 offset,
636 _depth,
637 )
638 }
639 }
640 unsafe impl<
641 T0: fidl::encoding::Encode<RealmOptions, fidl::encoding::DefaultFuchsiaResourceDialect>,
642 T1: fidl::encoding::Encode<
643 fidl::encoding::Endpoint<
644 fidl::endpoints::ServerEnd<fidl_fuchsia_testing_harness::RealmProxy_Marker>,
645 >,
646 fidl::encoding::DefaultFuchsiaResourceDialect,
647 >,
648 >
649 fidl::encoding::Encode<
650 RealmFactoryCreateRealmRequest,
651 fidl::encoding::DefaultFuchsiaResourceDialect,
652 > for (T0, T1)
653 {
654 #[inline]
655 unsafe fn encode(
656 self,
657 encoder: &mut fidl::encoding::Encoder<
658 '_,
659 fidl::encoding::DefaultFuchsiaResourceDialect,
660 >,
661 offset: usize,
662 depth: fidl::encoding::Depth,
663 ) -> fidl::Result<()> {
664 encoder.debug_check_bounds::<RealmFactoryCreateRealmRequest>(offset);
665 unsafe {
668 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(16);
669 (ptr as *mut u64).write_unaligned(0);
670 }
671 self.0.encode(encoder, offset + 0, depth)?;
673 self.1.encode(encoder, offset + 16, depth)?;
674 Ok(())
675 }
676 }
677
678 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
679 for RealmFactoryCreateRealmRequest
680 {
681 #[inline(always)]
682 fn new_empty() -> Self {
683 Self {
684 options: fidl::new_empty!(
685 RealmOptions,
686 fidl::encoding::DefaultFuchsiaResourceDialect
687 ),
688 realm_server: fidl::new_empty!(
689 fidl::encoding::Endpoint<
690 fidl::endpoints::ServerEnd<fidl_fuchsia_testing_harness::RealmProxy_Marker>,
691 >,
692 fidl::encoding::DefaultFuchsiaResourceDialect
693 ),
694 }
695 }
696
697 #[inline]
698 unsafe fn decode(
699 &mut self,
700 decoder: &mut fidl::encoding::Decoder<
701 '_,
702 fidl::encoding::DefaultFuchsiaResourceDialect,
703 >,
704 offset: usize,
705 _depth: fidl::encoding::Depth,
706 ) -> fidl::Result<()> {
707 decoder.debug_check_bounds::<Self>(offset);
708 let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(16) };
710 let padval = unsafe { (ptr as *const u64).read_unaligned() };
711 let mask = 0xffffffff00000000u64;
712 let maskedval = padval & mask;
713 if maskedval != 0 {
714 return Err(fidl::Error::NonZeroPadding {
715 padding_start: offset + 16 + ((mask as u64).trailing_zeros() / 8) as usize,
716 });
717 }
718 fidl::decode!(
719 RealmOptions,
720 fidl::encoding::DefaultFuchsiaResourceDialect,
721 &mut self.options,
722 decoder,
723 offset + 0,
724 _depth
725 )?;
726 fidl::decode!(
727 fidl::encoding::Endpoint<
728 fidl::endpoints::ServerEnd<fidl_fuchsia_testing_harness::RealmProxy_Marker>,
729 >,
730 fidl::encoding::DefaultFuchsiaResourceDialect,
731 &mut self.realm_server,
732 decoder,
733 offset + 16,
734 _depth
735 )?;
736 Ok(())
737 }
738 }
739
740 impl RealmOptions {
741 #[inline(always)]
742 fn max_ordinal_present(&self) -> u64 {
743 0
744 }
745 }
746
747 impl fidl::encoding::ResourceTypeMarker for RealmOptions {
748 type Borrowed<'a> = &'a mut Self;
749 fn take_or_borrow<'a>(
750 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
751 ) -> Self::Borrowed<'a> {
752 value
753 }
754 }
755
756 unsafe impl fidl::encoding::TypeMarker for RealmOptions {
757 type Owned = Self;
758
759 #[inline(always)]
760 fn inline_align(_context: fidl::encoding::Context) -> usize {
761 8
762 }
763
764 #[inline(always)]
765 fn inline_size(_context: fidl::encoding::Context) -> usize {
766 16
767 }
768 }
769
770 unsafe impl fidl::encoding::Encode<RealmOptions, fidl::encoding::DefaultFuchsiaResourceDialect>
771 for &mut RealmOptions
772 {
773 unsafe fn encode(
774 self,
775 encoder: &mut fidl::encoding::Encoder<
776 '_,
777 fidl::encoding::DefaultFuchsiaResourceDialect,
778 >,
779 offset: usize,
780 mut depth: fidl::encoding::Depth,
781 ) -> fidl::Result<()> {
782 encoder.debug_check_bounds::<RealmOptions>(offset);
783 let max_ordinal: u64 = self.max_ordinal_present();
785 encoder.write_num(max_ordinal, offset);
786 encoder.write_num(fidl::encoding::ALLOC_PRESENT_U64, offset + 8);
787 if max_ordinal == 0 {
789 return Ok(());
790 }
791 depth.increment()?;
792 let envelope_size = 8;
793 let bytes_len = max_ordinal as usize * envelope_size;
794 #[allow(unused_variables)]
795 let offset = encoder.out_of_line_offset(bytes_len);
796 let mut _prev_end_offset: usize = 0;
797
798 Ok(())
799 }
800 }
801
802 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect> for RealmOptions {
803 #[inline(always)]
804 fn new_empty() -> Self {
805 Self::default()
806 }
807
808 unsafe fn decode(
809 &mut self,
810 decoder: &mut fidl::encoding::Decoder<
811 '_,
812 fidl::encoding::DefaultFuchsiaResourceDialect,
813 >,
814 offset: usize,
815 mut depth: fidl::encoding::Depth,
816 ) -> fidl::Result<()> {
817 decoder.debug_check_bounds::<Self>(offset);
818 let len = match fidl::encoding::decode_vector_header(decoder, offset)? {
819 None => return Err(fidl::Error::NotNullable),
820 Some(len) => len,
821 };
822 if len == 0 {
824 return Ok(());
825 };
826 depth.increment()?;
827 let envelope_size = 8;
828 let bytes_len = len * envelope_size;
829 let offset = decoder.out_of_line_offset(bytes_len)?;
830 let mut _next_ordinal_to_read = 0;
832 let mut next_offset = offset;
833 let end_offset = offset + bytes_len;
834
835 while next_offset < end_offset {
837 _next_ordinal_to_read += 1;
838 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
839 next_offset += envelope_size;
840 }
841
842 Ok(())
843 }
844 }
845}