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_echoserver_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, PartialEq)]
15pub struct RealmFactoryCreateRealmRequest {
16 pub options: RealmOptions,
17}
18
19impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
20 for RealmFactoryCreateRealmRequest
21{
22}
23
24#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
25pub struct RealmFactoryCreateRealmResponse {
26 pub dictionary: fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
27}
28
29impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
30 for RealmFactoryCreateRealmResponse
31{
32}
33
34#[derive(Debug, Default, PartialEq)]
36pub struct RealmOptions {
37 pub example_option: Option<bool>,
39 #[doc(hidden)]
40 pub __source_breaking: fidl::marker::SourceBreaking,
41}
42
43impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for RealmOptions {}
44
45#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
46pub struct RealmFactoryMarker;
47
48impl fidl::endpoints::ProtocolMarker for RealmFactoryMarker {
49 type Proxy = RealmFactoryProxy;
50 type RequestStream = RealmFactoryRequestStream;
51 #[cfg(target_os = "fuchsia")]
52 type SynchronousProxy = RealmFactorySynchronousProxy;
53
54 const DEBUG_NAME: &'static str = "test.echoserver.RealmFactory";
55}
56impl fidl::endpoints::DiscoverableProtocolMarker for RealmFactoryMarker {}
57pub type RealmFactoryCreateRealmResult = Result<
58 fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
59 fidl_fuchsia_testing_harness::OperationError,
60>;
61
62pub trait RealmFactoryProxyInterface: Send + Sync {
63 type CreateRealmResponseFut: std::future::Future<Output = Result<RealmFactoryCreateRealmResult, fidl::Error>>
64 + Send;
65 fn r#create_realm(&self, options: RealmOptions) -> Self::CreateRealmResponseFut;
66}
67#[derive(Debug)]
68#[cfg(target_os = "fuchsia")]
69pub struct RealmFactorySynchronousProxy {
70 client: fidl::client::sync::Client,
71}
72
73#[cfg(target_os = "fuchsia")]
74impl fidl::endpoints::SynchronousProxy for RealmFactorySynchronousProxy {
75 type Proxy = RealmFactoryProxy;
76 type Protocol = RealmFactoryMarker;
77
78 fn from_channel(inner: fidl::Channel) -> Self {
79 Self::new(inner)
80 }
81
82 fn into_channel(self) -> fidl::Channel {
83 self.client.into_channel()
84 }
85
86 fn as_channel(&self) -> &fidl::Channel {
87 self.client.as_channel()
88 }
89}
90
91#[cfg(target_os = "fuchsia")]
92impl RealmFactorySynchronousProxy {
93 pub fn new(channel: fidl::Channel) -> Self {
94 let protocol_name = <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
95 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
96 }
97
98 pub fn into_channel(self) -> fidl::Channel {
99 self.client.into_channel()
100 }
101
102 pub fn wait_for_event(
105 &self,
106 deadline: zx::MonotonicInstant,
107 ) -> Result<RealmFactoryEvent, fidl::Error> {
108 RealmFactoryEvent::decode(self.client.wait_for_event(deadline)?)
109 }
110
111 pub fn r#create_realm(
115 &self,
116 mut options: RealmOptions,
117 ___deadline: zx::MonotonicInstant,
118 ) -> Result<RealmFactoryCreateRealmResult, fidl::Error> {
119 let _response = self
120 .client
121 .send_query::<RealmFactoryCreateRealmRequest, fidl::encoding::FlexibleResultType<
122 RealmFactoryCreateRealmResponse,
123 fidl_fuchsia_testing_harness::OperationError,
124 >>(
125 (&mut options,),
126 0x5484d2814b7a3c5c,
127 fidl::encoding::DynamicFlags::FLEXIBLE,
128 ___deadline,
129 )?
130 .into_result::<RealmFactoryMarker>("create_realm")?;
131 Ok(_response.map(|x| x.dictionary))
132 }
133}
134
135#[cfg(target_os = "fuchsia")]
136impl From<RealmFactorySynchronousProxy> for zx::Handle {
137 fn from(value: RealmFactorySynchronousProxy) -> Self {
138 value.into_channel().into()
139 }
140}
141
142#[cfg(target_os = "fuchsia")]
143impl From<fidl::Channel> for RealmFactorySynchronousProxy {
144 fn from(value: fidl::Channel) -> Self {
145 Self::new(value)
146 }
147}
148
149#[derive(Debug, Clone)]
150pub struct RealmFactoryProxy {
151 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
152}
153
154impl fidl::endpoints::Proxy for RealmFactoryProxy {
155 type Protocol = RealmFactoryMarker;
156
157 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
158 Self::new(inner)
159 }
160
161 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
162 self.client.into_channel().map_err(|client| Self { client })
163 }
164
165 fn as_channel(&self) -> &::fidl::AsyncChannel {
166 self.client.as_channel()
167 }
168}
169
170impl RealmFactoryProxy {
171 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
173 let protocol_name = <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
174 Self { client: fidl::client::Client::new(channel, protocol_name) }
175 }
176
177 pub fn take_event_stream(&self) -> RealmFactoryEventStream {
183 RealmFactoryEventStream { event_receiver: self.client.take_event_receiver() }
184 }
185
186 pub fn r#create_realm(
190 &self,
191 mut options: RealmOptions,
192 ) -> fidl::client::QueryResponseFut<
193 RealmFactoryCreateRealmResult,
194 fidl::encoding::DefaultFuchsiaResourceDialect,
195 > {
196 RealmFactoryProxyInterface::r#create_realm(self, options)
197 }
198}
199
200impl RealmFactoryProxyInterface for RealmFactoryProxy {
201 type CreateRealmResponseFut = fidl::client::QueryResponseFut<
202 RealmFactoryCreateRealmResult,
203 fidl::encoding::DefaultFuchsiaResourceDialect,
204 >;
205 fn r#create_realm(&self, mut options: RealmOptions) -> Self::CreateRealmResponseFut {
206 fn _decode(
207 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
208 ) -> Result<RealmFactoryCreateRealmResult, fidl::Error> {
209 let _response = fidl::client::decode_transaction_body::<
210 fidl::encoding::FlexibleResultType<
211 RealmFactoryCreateRealmResponse,
212 fidl_fuchsia_testing_harness::OperationError,
213 >,
214 fidl::encoding::DefaultFuchsiaResourceDialect,
215 0x5484d2814b7a3c5c,
216 >(_buf?)?
217 .into_result::<RealmFactoryMarker>("create_realm")?;
218 Ok(_response.map(|x| x.dictionary))
219 }
220 self.client
221 .send_query_and_decode::<RealmFactoryCreateRealmRequest, RealmFactoryCreateRealmResult>(
222 (&mut options,),
223 0x5484d2814b7a3c5c,
224 fidl::encoding::DynamicFlags::FLEXIBLE,
225 _decode,
226 )
227 }
228}
229
230pub struct RealmFactoryEventStream {
231 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
232}
233
234impl std::marker::Unpin for RealmFactoryEventStream {}
235
236impl futures::stream::FusedStream for RealmFactoryEventStream {
237 fn is_terminated(&self) -> bool {
238 self.event_receiver.is_terminated()
239 }
240}
241
242impl futures::Stream for RealmFactoryEventStream {
243 type Item = Result<RealmFactoryEvent, fidl::Error>;
244
245 fn poll_next(
246 mut self: std::pin::Pin<&mut Self>,
247 cx: &mut std::task::Context<'_>,
248 ) -> std::task::Poll<Option<Self::Item>> {
249 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
250 &mut self.event_receiver,
251 cx
252 )?) {
253 Some(buf) => std::task::Poll::Ready(Some(RealmFactoryEvent::decode(buf))),
254 None => std::task::Poll::Ready(None),
255 }
256 }
257}
258
259#[derive(Debug)]
260pub enum RealmFactoryEvent {
261 #[non_exhaustive]
262 _UnknownEvent {
263 ordinal: u64,
265 },
266}
267
268impl RealmFactoryEvent {
269 fn decode(
271 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
272 ) -> Result<RealmFactoryEvent, fidl::Error> {
273 let (bytes, _handles) = buf.split_mut();
274 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
275 debug_assert_eq!(tx_header.tx_id, 0);
276 match tx_header.ordinal {
277 _ if tx_header.dynamic_flags().contains(fidl::encoding::DynamicFlags::FLEXIBLE) => {
278 Ok(RealmFactoryEvent::_UnknownEvent { ordinal: tx_header.ordinal })
279 }
280 _ => Err(fidl::Error::UnknownOrdinal {
281 ordinal: tx_header.ordinal,
282 protocol_name: <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
283 }),
284 }
285 }
286}
287
288pub struct RealmFactoryRequestStream {
290 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
291 is_terminated: bool,
292}
293
294impl std::marker::Unpin for RealmFactoryRequestStream {}
295
296impl futures::stream::FusedStream for RealmFactoryRequestStream {
297 fn is_terminated(&self) -> bool {
298 self.is_terminated
299 }
300}
301
302impl fidl::endpoints::RequestStream for RealmFactoryRequestStream {
303 type Protocol = RealmFactoryMarker;
304 type ControlHandle = RealmFactoryControlHandle;
305
306 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
307 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
308 }
309
310 fn control_handle(&self) -> Self::ControlHandle {
311 RealmFactoryControlHandle { inner: self.inner.clone() }
312 }
313
314 fn into_inner(
315 self,
316 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
317 {
318 (self.inner, self.is_terminated)
319 }
320
321 fn from_inner(
322 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
323 is_terminated: bool,
324 ) -> Self {
325 Self { inner, is_terminated }
326 }
327}
328
329impl futures::Stream for RealmFactoryRequestStream {
330 type Item = Result<RealmFactoryRequest, fidl::Error>;
331
332 fn poll_next(
333 mut self: std::pin::Pin<&mut Self>,
334 cx: &mut std::task::Context<'_>,
335 ) -> std::task::Poll<Option<Self::Item>> {
336 let this = &mut *self;
337 if this.inner.check_shutdown(cx) {
338 this.is_terminated = true;
339 return std::task::Poll::Ready(None);
340 }
341 if this.is_terminated {
342 panic!("polled RealmFactoryRequestStream after completion");
343 }
344 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
345 |bytes, handles| {
346 match this.inner.channel().read_etc(cx, bytes, handles) {
347 std::task::Poll::Ready(Ok(())) => {}
348 std::task::Poll::Pending => return std::task::Poll::Pending,
349 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
350 this.is_terminated = true;
351 return std::task::Poll::Ready(None);
352 }
353 std::task::Poll::Ready(Err(e)) => {
354 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
355 e.into(),
356 ))))
357 }
358 }
359
360 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
362
363 std::task::Poll::Ready(Some(match header.ordinal {
364 0x5484d2814b7a3c5c => {
365 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
366 let mut req = fidl::new_empty!(
367 RealmFactoryCreateRealmRequest,
368 fidl::encoding::DefaultFuchsiaResourceDialect
369 );
370 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<RealmFactoryCreateRealmRequest>(&header, _body_bytes, handles, &mut req)?;
371 let control_handle =
372 RealmFactoryControlHandle { inner: this.inner.clone() };
373 Ok(RealmFactoryRequest::CreateRealm {
374 options: req.options,
375
376 responder: RealmFactoryCreateRealmResponder {
377 control_handle: std::mem::ManuallyDrop::new(control_handle),
378 tx_id: header.tx_id,
379 },
380 })
381 }
382 _ if header.tx_id == 0
383 && header
384 .dynamic_flags()
385 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
386 {
387 Ok(RealmFactoryRequest::_UnknownMethod {
388 ordinal: header.ordinal,
389 control_handle: RealmFactoryControlHandle { inner: this.inner.clone() },
390 method_type: fidl::MethodType::OneWay,
391 })
392 }
393 _ if header
394 .dynamic_flags()
395 .contains(fidl::encoding::DynamicFlags::FLEXIBLE) =>
396 {
397 this.inner.send_framework_err(
398 fidl::encoding::FrameworkErr::UnknownMethod,
399 header.tx_id,
400 header.ordinal,
401 header.dynamic_flags(),
402 (bytes, handles),
403 )?;
404 Ok(RealmFactoryRequest::_UnknownMethod {
405 ordinal: header.ordinal,
406 control_handle: RealmFactoryControlHandle { inner: this.inner.clone() },
407 method_type: fidl::MethodType::TwoWay,
408 })
409 }
410 _ => Err(fidl::Error::UnknownOrdinal {
411 ordinal: header.ordinal,
412 protocol_name:
413 <RealmFactoryMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
414 }),
415 }))
416 },
417 )
418 }
419}
420
421#[derive(Debug)]
422pub enum RealmFactoryRequest {
423 CreateRealm { options: RealmOptions, responder: RealmFactoryCreateRealmResponder },
427 #[non_exhaustive]
429 _UnknownMethod {
430 ordinal: u64,
432 control_handle: RealmFactoryControlHandle,
433 method_type: fidl::MethodType,
434 },
435}
436
437impl RealmFactoryRequest {
438 #[allow(irrefutable_let_patterns)]
439 pub fn into_create_realm(self) -> Option<(RealmOptions, RealmFactoryCreateRealmResponder)> {
440 if let RealmFactoryRequest::CreateRealm { options, responder } = self {
441 Some((options, responder))
442 } else {
443 None
444 }
445 }
446
447 pub fn method_name(&self) -> &'static str {
449 match *self {
450 RealmFactoryRequest::CreateRealm { .. } => "create_realm",
451 RealmFactoryRequest::_UnknownMethod {
452 method_type: fidl::MethodType::OneWay, ..
453 } => "unknown one-way method",
454 RealmFactoryRequest::_UnknownMethod {
455 method_type: fidl::MethodType::TwoWay, ..
456 } => "unknown two-way method",
457 }
458 }
459}
460
461#[derive(Debug, Clone)]
462pub struct RealmFactoryControlHandle {
463 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
464}
465
466impl fidl::endpoints::ControlHandle for RealmFactoryControlHandle {
467 fn shutdown(&self) {
468 self.inner.shutdown()
469 }
470 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
471 self.inner.shutdown_with_epitaph(status)
472 }
473
474 fn is_closed(&self) -> bool {
475 self.inner.channel().is_closed()
476 }
477 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
478 self.inner.channel().on_closed()
479 }
480
481 #[cfg(target_os = "fuchsia")]
482 fn signal_peer(
483 &self,
484 clear_mask: zx::Signals,
485 set_mask: zx::Signals,
486 ) -> Result<(), zx_status::Status> {
487 use fidl::Peered;
488 self.inner.channel().signal_peer(clear_mask, set_mask)
489 }
490}
491
492impl RealmFactoryControlHandle {}
493
494#[must_use = "FIDL methods require a response to be sent"]
495#[derive(Debug)]
496pub struct RealmFactoryCreateRealmResponder {
497 control_handle: std::mem::ManuallyDrop<RealmFactoryControlHandle>,
498 tx_id: u32,
499}
500
501impl std::ops::Drop for RealmFactoryCreateRealmResponder {
505 fn drop(&mut self) {
506 self.control_handle.shutdown();
507 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
509 }
510}
511
512impl fidl::endpoints::Responder for RealmFactoryCreateRealmResponder {
513 type ControlHandle = RealmFactoryControlHandle;
514
515 fn control_handle(&self) -> &RealmFactoryControlHandle {
516 &self.control_handle
517 }
518
519 fn drop_without_shutdown(mut self) {
520 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
522 std::mem::forget(self);
524 }
525}
526
527impl RealmFactoryCreateRealmResponder {
528 pub fn send(
532 self,
533 mut result: Result<
534 fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
535 fidl_fuchsia_testing_harness::OperationError,
536 >,
537 ) -> Result<(), fidl::Error> {
538 let _result = self.send_raw(result);
539 if _result.is_err() {
540 self.control_handle.shutdown();
541 }
542 self.drop_without_shutdown();
543 _result
544 }
545
546 pub fn send_no_shutdown_on_err(
548 self,
549 mut result: Result<
550 fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
551 fidl_fuchsia_testing_harness::OperationError,
552 >,
553 ) -> Result<(), fidl::Error> {
554 let _result = self.send_raw(result);
555 self.drop_without_shutdown();
556 _result
557 }
558
559 fn send_raw(
560 &self,
561 mut result: Result<
562 fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
563 fidl_fuchsia_testing_harness::OperationError,
564 >,
565 ) -> Result<(), fidl::Error> {
566 self.control_handle.inner.send::<fidl::encoding::FlexibleResultType<
567 RealmFactoryCreateRealmResponse,
568 fidl_fuchsia_testing_harness::OperationError,
569 >>(
570 fidl::encoding::FlexibleResult::new(result.map(|dictionary| (dictionary,))),
571 self.tx_id,
572 0x5484d2814b7a3c5c,
573 fidl::encoding::DynamicFlags::FLEXIBLE,
574 )
575 }
576}
577
578mod internal {
579 use super::*;
580
581 impl fidl::encoding::ResourceTypeMarker for RealmFactoryCreateRealmRequest {
582 type Borrowed<'a> = &'a mut Self;
583 fn take_or_borrow<'a>(
584 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
585 ) -> Self::Borrowed<'a> {
586 value
587 }
588 }
589
590 unsafe impl fidl::encoding::TypeMarker for RealmFactoryCreateRealmRequest {
591 type Owned = Self;
592
593 #[inline(always)]
594 fn inline_align(_context: fidl::encoding::Context) -> usize {
595 8
596 }
597
598 #[inline(always)]
599 fn inline_size(_context: fidl::encoding::Context) -> usize {
600 16
601 }
602 }
603
604 unsafe impl
605 fidl::encoding::Encode<
606 RealmFactoryCreateRealmRequest,
607 fidl::encoding::DefaultFuchsiaResourceDialect,
608 > for &mut RealmFactoryCreateRealmRequest
609 {
610 #[inline]
611 unsafe fn encode(
612 self,
613 encoder: &mut fidl::encoding::Encoder<
614 '_,
615 fidl::encoding::DefaultFuchsiaResourceDialect,
616 >,
617 offset: usize,
618 _depth: fidl::encoding::Depth,
619 ) -> fidl::Result<()> {
620 encoder.debug_check_bounds::<RealmFactoryCreateRealmRequest>(offset);
621 fidl::encoding::Encode::<
623 RealmFactoryCreateRealmRequest,
624 fidl::encoding::DefaultFuchsiaResourceDialect,
625 >::encode(
626 (<RealmOptions as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
627 &mut self.options,
628 ),),
629 encoder,
630 offset,
631 _depth,
632 )
633 }
634 }
635 unsafe impl<
636 T0: fidl::encoding::Encode<RealmOptions, fidl::encoding::DefaultFuchsiaResourceDialect>,
637 >
638 fidl::encoding::Encode<
639 RealmFactoryCreateRealmRequest,
640 fidl::encoding::DefaultFuchsiaResourceDialect,
641 > for (T0,)
642 {
643 #[inline]
644 unsafe fn encode(
645 self,
646 encoder: &mut fidl::encoding::Encoder<
647 '_,
648 fidl::encoding::DefaultFuchsiaResourceDialect,
649 >,
650 offset: usize,
651 depth: fidl::encoding::Depth,
652 ) -> fidl::Result<()> {
653 encoder.debug_check_bounds::<RealmFactoryCreateRealmRequest>(offset);
654 self.0.encode(encoder, offset + 0, depth)?;
658 Ok(())
659 }
660 }
661
662 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
663 for RealmFactoryCreateRealmRequest
664 {
665 #[inline(always)]
666 fn new_empty() -> Self {
667 Self {
668 options: fidl::new_empty!(
669 RealmOptions,
670 fidl::encoding::DefaultFuchsiaResourceDialect
671 ),
672 }
673 }
674
675 #[inline]
676 unsafe fn decode(
677 &mut self,
678 decoder: &mut fidl::encoding::Decoder<
679 '_,
680 fidl::encoding::DefaultFuchsiaResourceDialect,
681 >,
682 offset: usize,
683 _depth: fidl::encoding::Depth,
684 ) -> fidl::Result<()> {
685 decoder.debug_check_bounds::<Self>(offset);
686 fidl::decode!(
688 RealmOptions,
689 fidl::encoding::DefaultFuchsiaResourceDialect,
690 &mut self.options,
691 decoder,
692 offset + 0,
693 _depth
694 )?;
695 Ok(())
696 }
697 }
698
699 impl fidl::encoding::ResourceTypeMarker for RealmFactoryCreateRealmResponse {
700 type Borrowed<'a> = &'a mut Self;
701 fn take_or_borrow<'a>(
702 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
703 ) -> Self::Borrowed<'a> {
704 value
705 }
706 }
707
708 unsafe impl fidl::encoding::TypeMarker for RealmFactoryCreateRealmResponse {
709 type Owned = Self;
710
711 #[inline(always)]
712 fn inline_align(_context: fidl::encoding::Context) -> usize {
713 4
714 }
715
716 #[inline(always)]
717 fn inline_size(_context: fidl::encoding::Context) -> usize {
718 4
719 }
720 }
721
722 unsafe impl
723 fidl::encoding::Encode<
724 RealmFactoryCreateRealmResponse,
725 fidl::encoding::DefaultFuchsiaResourceDialect,
726 > for &mut RealmFactoryCreateRealmResponse
727 {
728 #[inline]
729 unsafe fn encode(
730 self,
731 encoder: &mut fidl::encoding::Encoder<
732 '_,
733 fidl::encoding::DefaultFuchsiaResourceDialect,
734 >,
735 offset: usize,
736 _depth: fidl::encoding::Depth,
737 ) -> fidl::Result<()> {
738 encoder.debug_check_bounds::<RealmFactoryCreateRealmResponse>(offset);
739 fidl::encoding::Encode::<
741 RealmFactoryCreateRealmResponse,
742 fidl::encoding::DefaultFuchsiaResourceDialect,
743 >::encode(
744 (<fidl::encoding::Endpoint<
745 fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
746 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
747 &mut self.dictionary
748 ),),
749 encoder,
750 offset,
751 _depth,
752 )
753 }
754 }
755 unsafe impl<
756 T0: fidl::encoding::Encode<
757 fidl::encoding::Endpoint<
758 fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
759 >,
760 fidl::encoding::DefaultFuchsiaResourceDialect,
761 >,
762 >
763 fidl::encoding::Encode<
764 RealmFactoryCreateRealmResponse,
765 fidl::encoding::DefaultFuchsiaResourceDialect,
766 > for (T0,)
767 {
768 #[inline]
769 unsafe fn encode(
770 self,
771 encoder: &mut fidl::encoding::Encoder<
772 '_,
773 fidl::encoding::DefaultFuchsiaResourceDialect,
774 >,
775 offset: usize,
776 depth: fidl::encoding::Depth,
777 ) -> fidl::Result<()> {
778 encoder.debug_check_bounds::<RealmFactoryCreateRealmResponse>(offset);
779 self.0.encode(encoder, offset + 0, depth)?;
783 Ok(())
784 }
785 }
786
787 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
788 for RealmFactoryCreateRealmResponse
789 {
790 #[inline(always)]
791 fn new_empty() -> Self {
792 Self {
793 dictionary: fidl::new_empty!(
794 fidl::encoding::Endpoint<
795 fidl::endpoints::ClientEnd<
796 fidl_fuchsia_component_sandbox::DictionaryMarker,
797 >,
798 >,
799 fidl::encoding::DefaultFuchsiaResourceDialect
800 ),
801 }
802 }
803
804 #[inline]
805 unsafe fn decode(
806 &mut self,
807 decoder: &mut fidl::encoding::Decoder<
808 '_,
809 fidl::encoding::DefaultFuchsiaResourceDialect,
810 >,
811 offset: usize,
812 _depth: fidl::encoding::Depth,
813 ) -> fidl::Result<()> {
814 decoder.debug_check_bounds::<Self>(offset);
815 fidl::decode!(
817 fidl::encoding::Endpoint<
818 fidl::endpoints::ClientEnd<fidl_fuchsia_component_sandbox::DictionaryMarker>,
819 >,
820 fidl::encoding::DefaultFuchsiaResourceDialect,
821 &mut self.dictionary,
822 decoder,
823 offset + 0,
824 _depth
825 )?;
826 Ok(())
827 }
828 }
829
830 impl RealmOptions {
831 #[inline(always)]
832 fn max_ordinal_present(&self) -> u64 {
833 if let Some(_) = self.example_option {
834 return 1;
835 }
836 0
837 }
838 }
839
840 impl fidl::encoding::ResourceTypeMarker for RealmOptions {
841 type Borrowed<'a> = &'a mut Self;
842 fn take_or_borrow<'a>(
843 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
844 ) -> Self::Borrowed<'a> {
845 value
846 }
847 }
848
849 unsafe impl fidl::encoding::TypeMarker for RealmOptions {
850 type Owned = Self;
851
852 #[inline(always)]
853 fn inline_align(_context: fidl::encoding::Context) -> usize {
854 8
855 }
856
857 #[inline(always)]
858 fn inline_size(_context: fidl::encoding::Context) -> usize {
859 16
860 }
861 }
862
863 unsafe impl fidl::encoding::Encode<RealmOptions, fidl::encoding::DefaultFuchsiaResourceDialect>
864 for &mut RealmOptions
865 {
866 unsafe fn encode(
867 self,
868 encoder: &mut fidl::encoding::Encoder<
869 '_,
870 fidl::encoding::DefaultFuchsiaResourceDialect,
871 >,
872 offset: usize,
873 mut depth: fidl::encoding::Depth,
874 ) -> fidl::Result<()> {
875 encoder.debug_check_bounds::<RealmOptions>(offset);
876 let max_ordinal: u64 = self.max_ordinal_present();
878 encoder.write_num(max_ordinal, offset);
879 encoder.write_num(fidl::encoding::ALLOC_PRESENT_U64, offset + 8);
880 if max_ordinal == 0 {
882 return Ok(());
883 }
884 depth.increment()?;
885 let envelope_size = 8;
886 let bytes_len = max_ordinal as usize * envelope_size;
887 #[allow(unused_variables)]
888 let offset = encoder.out_of_line_offset(bytes_len);
889 let mut _prev_end_offset: usize = 0;
890 if 1 > max_ordinal {
891 return Ok(());
892 }
893
894 let cur_offset: usize = (1 - 1) * envelope_size;
897
898 encoder.padding(offset + _prev_end_offset, cur_offset - _prev_end_offset);
900
901 fidl::encoding::encode_in_envelope_optional::<
906 bool,
907 fidl::encoding::DefaultFuchsiaResourceDialect,
908 >(
909 self.example_option.as_ref().map(<bool as fidl::encoding::ValueTypeMarker>::borrow),
910 encoder,
911 offset + cur_offset,
912 depth,
913 )?;
914
915 _prev_end_offset = cur_offset + envelope_size;
916
917 Ok(())
918 }
919 }
920
921 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect> for RealmOptions {
922 #[inline(always)]
923 fn new_empty() -> Self {
924 Self::default()
925 }
926
927 unsafe fn decode(
928 &mut self,
929 decoder: &mut fidl::encoding::Decoder<
930 '_,
931 fidl::encoding::DefaultFuchsiaResourceDialect,
932 >,
933 offset: usize,
934 mut depth: fidl::encoding::Depth,
935 ) -> fidl::Result<()> {
936 decoder.debug_check_bounds::<Self>(offset);
937 let len = match fidl::encoding::decode_vector_header(decoder, offset)? {
938 None => return Err(fidl::Error::NotNullable),
939 Some(len) => len,
940 };
941 if len == 0 {
943 return Ok(());
944 };
945 depth.increment()?;
946 let envelope_size = 8;
947 let bytes_len = len * envelope_size;
948 let offset = decoder.out_of_line_offset(bytes_len)?;
949 let mut _next_ordinal_to_read = 0;
951 let mut next_offset = offset;
952 let end_offset = offset + bytes_len;
953 _next_ordinal_to_read += 1;
954 if next_offset >= end_offset {
955 return Ok(());
956 }
957
958 while _next_ordinal_to_read < 1 {
960 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
961 _next_ordinal_to_read += 1;
962 next_offset += envelope_size;
963 }
964
965 let next_out_of_line = decoder.next_out_of_line();
966 let handles_before = decoder.remaining_handles();
967 if let Some((inlined, num_bytes, num_handles)) =
968 fidl::encoding::decode_envelope_header(decoder, next_offset)?
969 {
970 let member_inline_size =
971 <bool as fidl::encoding::TypeMarker>::inline_size(decoder.context);
972 if inlined != (member_inline_size <= 4) {
973 return Err(fidl::Error::InvalidInlineBitInEnvelope);
974 }
975 let inner_offset;
976 let mut inner_depth = depth.clone();
977 if inlined {
978 decoder.check_inline_envelope_padding(next_offset, member_inline_size)?;
979 inner_offset = next_offset;
980 } else {
981 inner_offset = decoder.out_of_line_offset(member_inline_size)?;
982 inner_depth.increment()?;
983 }
984 let val_ref = self.example_option.get_or_insert_with(|| {
985 fidl::new_empty!(bool, fidl::encoding::DefaultFuchsiaResourceDialect)
986 });
987 fidl::decode!(
988 bool,
989 fidl::encoding::DefaultFuchsiaResourceDialect,
990 val_ref,
991 decoder,
992 inner_offset,
993 inner_depth
994 )?;
995 if !inlined && decoder.next_out_of_line() != next_out_of_line + (num_bytes as usize)
996 {
997 return Err(fidl::Error::InvalidNumBytesInEnvelope);
998 }
999 if handles_before != decoder.remaining_handles() + (num_handles as usize) {
1000 return Err(fidl::Error::InvalidNumHandlesInEnvelope);
1001 }
1002 }
1003
1004 next_offset += envelope_size;
1005
1006 while next_offset < end_offset {
1008 _next_ordinal_to_read += 1;
1009 fidl::encoding::decode_unknown_envelope(decoder, next_offset, depth)?;
1010 next_offset += envelope_size;
1011 }
1012
1013 Ok(())
1014 }
1015 }
1016}