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_ui_pointerinjector_configuration_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, PartialEq)]
15pub struct SetupGetViewRefsResponse {
16 pub context: fidl_fuchsia_ui_views::ViewRef,
17 pub target: fidl_fuchsia_ui_views::ViewRef,
18}
19
20impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect> for SetupGetViewRefsResponse {}
21
22#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
23pub struct SetupMarker;
24
25impl fidl::endpoints::ProtocolMarker for SetupMarker {
26 type Proxy = SetupProxy;
27 type RequestStream = SetupRequestStream;
28 #[cfg(target_os = "fuchsia")]
29 type SynchronousProxy = SetupSynchronousProxy;
30
31 const DEBUG_NAME: &'static str = "fuchsia.ui.pointerinjector.configuration.Setup";
32}
33impl fidl::endpoints::DiscoverableProtocolMarker for SetupMarker {}
34
35pub trait SetupProxyInterface: Send + Sync {
36 type GetViewRefsResponseFut: std::future::Future<
37 Output = Result<
38 (fidl_fuchsia_ui_views::ViewRef, fidl_fuchsia_ui_views::ViewRef),
39 fidl::Error,
40 >,
41 > + Send;
42 fn r#get_view_refs(&self) -> Self::GetViewRefsResponseFut;
43 type WatchViewportResponseFut: std::future::Future<Output = Result<fidl_fuchsia_ui_pointerinjector::Viewport, fidl::Error>>
44 + Send;
45 fn r#watch_viewport(&self) -> Self::WatchViewportResponseFut;
46}
47#[derive(Debug)]
48#[cfg(target_os = "fuchsia")]
49pub struct SetupSynchronousProxy {
50 client: fidl::client::sync::Client,
51}
52
53#[cfg(target_os = "fuchsia")]
54impl fidl::endpoints::SynchronousProxy for SetupSynchronousProxy {
55 type Proxy = SetupProxy;
56 type Protocol = SetupMarker;
57
58 fn from_channel(inner: fidl::Channel) -> Self {
59 Self::new(inner)
60 }
61
62 fn into_channel(self) -> fidl::Channel {
63 self.client.into_channel()
64 }
65
66 fn as_channel(&self) -> &fidl::Channel {
67 self.client.as_channel()
68 }
69}
70
71#[cfg(target_os = "fuchsia")]
72impl SetupSynchronousProxy {
73 pub fn new(channel: fidl::Channel) -> Self {
74 let protocol_name = <SetupMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
75 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
76 }
77
78 pub fn into_channel(self) -> fidl::Channel {
79 self.client.into_channel()
80 }
81
82 pub fn wait_for_event(
85 &self,
86 deadline: zx::MonotonicInstant,
87 ) -> Result<SetupEvent, fidl::Error> {
88 SetupEvent::decode(self.client.wait_for_event(deadline)?)
89 }
90
91 pub fn r#get_view_refs(
97 &self,
98 ___deadline: zx::MonotonicInstant,
99 ) -> Result<(fidl_fuchsia_ui_views::ViewRef, fidl_fuchsia_ui_views::ViewRef), fidl::Error> {
100 let _response =
101 self.client.send_query::<fidl::encoding::EmptyPayload, SetupGetViewRefsResponse>(
102 (),
103 0x5d7cc6a455bdde6,
104 fidl::encoding::DynamicFlags::empty(),
105 ___deadline,
106 )?;
107 Ok((_response.context, _response.target))
108 }
109
110 pub fn r#watch_viewport(
119 &self,
120 ___deadline: zx::MonotonicInstant,
121 ) -> Result<fidl_fuchsia_ui_pointerinjector::Viewport, fidl::Error> {
122 let _response =
123 self.client.send_query::<fidl::encoding::EmptyPayload, SetupWatchViewportResponse>(
124 (),
125 0x5488bc48af9c943a,
126 fidl::encoding::DynamicFlags::empty(),
127 ___deadline,
128 )?;
129 Ok(_response.viewport)
130 }
131}
132
133#[cfg(target_os = "fuchsia")]
134impl From<SetupSynchronousProxy> for zx::Handle {
135 fn from(value: SetupSynchronousProxy) -> Self {
136 value.into_channel().into()
137 }
138}
139
140#[cfg(target_os = "fuchsia")]
141impl From<fidl::Channel> for SetupSynchronousProxy {
142 fn from(value: fidl::Channel) -> Self {
143 Self::new(value)
144 }
145}
146
147#[derive(Debug, Clone)]
148pub struct SetupProxy {
149 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
150}
151
152impl fidl::endpoints::Proxy for SetupProxy {
153 type Protocol = SetupMarker;
154
155 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
156 Self::new(inner)
157 }
158
159 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
160 self.client.into_channel().map_err(|client| Self { client })
161 }
162
163 fn as_channel(&self) -> &::fidl::AsyncChannel {
164 self.client.as_channel()
165 }
166}
167
168impl SetupProxy {
169 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
171 let protocol_name = <SetupMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
172 Self { client: fidl::client::Client::new(channel, protocol_name) }
173 }
174
175 pub fn take_event_stream(&self) -> SetupEventStream {
181 SetupEventStream { event_receiver: self.client.take_event_receiver() }
182 }
183
184 pub fn r#get_view_refs(
190 &self,
191 ) -> fidl::client::QueryResponseFut<
192 (fidl_fuchsia_ui_views::ViewRef, fidl_fuchsia_ui_views::ViewRef),
193 fidl::encoding::DefaultFuchsiaResourceDialect,
194 > {
195 SetupProxyInterface::r#get_view_refs(self)
196 }
197
198 pub fn r#watch_viewport(
207 &self,
208 ) -> fidl::client::QueryResponseFut<
209 fidl_fuchsia_ui_pointerinjector::Viewport,
210 fidl::encoding::DefaultFuchsiaResourceDialect,
211 > {
212 SetupProxyInterface::r#watch_viewport(self)
213 }
214}
215
216impl SetupProxyInterface for SetupProxy {
217 type GetViewRefsResponseFut = fidl::client::QueryResponseFut<
218 (fidl_fuchsia_ui_views::ViewRef, fidl_fuchsia_ui_views::ViewRef),
219 fidl::encoding::DefaultFuchsiaResourceDialect,
220 >;
221 fn r#get_view_refs(&self) -> Self::GetViewRefsResponseFut {
222 fn _decode(
223 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
224 ) -> Result<(fidl_fuchsia_ui_views::ViewRef, fidl_fuchsia_ui_views::ViewRef), fidl::Error>
225 {
226 let _response = fidl::client::decode_transaction_body::<
227 SetupGetViewRefsResponse,
228 fidl::encoding::DefaultFuchsiaResourceDialect,
229 0x5d7cc6a455bdde6,
230 >(_buf?)?;
231 Ok((_response.context, _response.target))
232 }
233 self.client.send_query_and_decode::<
234 fidl::encoding::EmptyPayload,
235 (fidl_fuchsia_ui_views::ViewRef, fidl_fuchsia_ui_views::ViewRef),
236 >(
237 (),
238 0x5d7cc6a455bdde6,
239 fidl::encoding::DynamicFlags::empty(),
240 _decode,
241 )
242 }
243
244 type WatchViewportResponseFut = fidl::client::QueryResponseFut<
245 fidl_fuchsia_ui_pointerinjector::Viewport,
246 fidl::encoding::DefaultFuchsiaResourceDialect,
247 >;
248 fn r#watch_viewport(&self) -> Self::WatchViewportResponseFut {
249 fn _decode(
250 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
251 ) -> Result<fidl_fuchsia_ui_pointerinjector::Viewport, fidl::Error> {
252 let _response = fidl::client::decode_transaction_body::<
253 SetupWatchViewportResponse,
254 fidl::encoding::DefaultFuchsiaResourceDialect,
255 0x5488bc48af9c943a,
256 >(_buf?)?;
257 Ok(_response.viewport)
258 }
259 self.client.send_query_and_decode::<
260 fidl::encoding::EmptyPayload,
261 fidl_fuchsia_ui_pointerinjector::Viewport,
262 >(
263 (),
264 0x5488bc48af9c943a,
265 fidl::encoding::DynamicFlags::empty(),
266 _decode,
267 )
268 }
269}
270
271pub struct SetupEventStream {
272 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
273}
274
275impl std::marker::Unpin for SetupEventStream {}
276
277impl futures::stream::FusedStream for SetupEventStream {
278 fn is_terminated(&self) -> bool {
279 self.event_receiver.is_terminated()
280 }
281}
282
283impl futures::Stream for SetupEventStream {
284 type Item = Result<SetupEvent, fidl::Error>;
285
286 fn poll_next(
287 mut self: std::pin::Pin<&mut Self>,
288 cx: &mut std::task::Context<'_>,
289 ) -> std::task::Poll<Option<Self::Item>> {
290 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
291 &mut self.event_receiver,
292 cx
293 )?) {
294 Some(buf) => std::task::Poll::Ready(Some(SetupEvent::decode(buf))),
295 None => std::task::Poll::Ready(None),
296 }
297 }
298}
299
300#[derive(Debug)]
301pub enum SetupEvent {}
302
303impl SetupEvent {
304 fn decode(
306 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
307 ) -> Result<SetupEvent, fidl::Error> {
308 let (bytes, _handles) = buf.split_mut();
309 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
310 debug_assert_eq!(tx_header.tx_id, 0);
311 match tx_header.ordinal {
312 _ => Err(fidl::Error::UnknownOrdinal {
313 ordinal: tx_header.ordinal,
314 protocol_name: <SetupMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
315 }),
316 }
317 }
318}
319
320pub struct SetupRequestStream {
322 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
323 is_terminated: bool,
324}
325
326impl std::marker::Unpin for SetupRequestStream {}
327
328impl futures::stream::FusedStream for SetupRequestStream {
329 fn is_terminated(&self) -> bool {
330 self.is_terminated
331 }
332}
333
334impl fidl::endpoints::RequestStream for SetupRequestStream {
335 type Protocol = SetupMarker;
336 type ControlHandle = SetupControlHandle;
337
338 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
339 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
340 }
341
342 fn control_handle(&self) -> Self::ControlHandle {
343 SetupControlHandle { inner: self.inner.clone() }
344 }
345
346 fn into_inner(
347 self,
348 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
349 {
350 (self.inner, self.is_terminated)
351 }
352
353 fn from_inner(
354 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
355 is_terminated: bool,
356 ) -> Self {
357 Self { inner, is_terminated }
358 }
359}
360
361impl futures::Stream for SetupRequestStream {
362 type Item = Result<SetupRequest, fidl::Error>;
363
364 fn poll_next(
365 mut self: std::pin::Pin<&mut Self>,
366 cx: &mut std::task::Context<'_>,
367 ) -> std::task::Poll<Option<Self::Item>> {
368 let this = &mut *self;
369 if this.inner.check_shutdown(cx) {
370 this.is_terminated = true;
371 return std::task::Poll::Ready(None);
372 }
373 if this.is_terminated {
374 panic!("polled SetupRequestStream after completion");
375 }
376 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
377 |bytes, handles| {
378 match this.inner.channel().read_etc(cx, bytes, handles) {
379 std::task::Poll::Ready(Ok(())) => {}
380 std::task::Poll::Pending => return std::task::Poll::Pending,
381 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
382 this.is_terminated = true;
383 return std::task::Poll::Ready(None);
384 }
385 std::task::Poll::Ready(Err(e)) => {
386 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
387 e.into(),
388 ))))
389 }
390 }
391
392 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
394
395 std::task::Poll::Ready(Some(match header.ordinal {
396 0x5d7cc6a455bdde6 => {
397 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
398 let mut req = fidl::new_empty!(
399 fidl::encoding::EmptyPayload,
400 fidl::encoding::DefaultFuchsiaResourceDialect
401 );
402 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
403 let control_handle = SetupControlHandle { inner: this.inner.clone() };
404 Ok(SetupRequest::GetViewRefs {
405 responder: SetupGetViewRefsResponder {
406 control_handle: std::mem::ManuallyDrop::new(control_handle),
407 tx_id: header.tx_id,
408 },
409 })
410 }
411 0x5488bc48af9c943a => {
412 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
413 let mut req = fidl::new_empty!(
414 fidl::encoding::EmptyPayload,
415 fidl::encoding::DefaultFuchsiaResourceDialect
416 );
417 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
418 let control_handle = SetupControlHandle { inner: this.inner.clone() };
419 Ok(SetupRequest::WatchViewport {
420 responder: SetupWatchViewportResponder {
421 control_handle: std::mem::ManuallyDrop::new(control_handle),
422 tx_id: header.tx_id,
423 },
424 })
425 }
426 _ => Err(fidl::Error::UnknownOrdinal {
427 ordinal: header.ordinal,
428 protocol_name: <SetupMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
429 }),
430 }))
431 },
432 )
433 }
434}
435
436#[derive(Debug)]
440pub enum SetupRequest {
441 GetViewRefs { responder: SetupGetViewRefsResponder },
447 WatchViewport { responder: SetupWatchViewportResponder },
456}
457
458impl SetupRequest {
459 #[allow(irrefutable_let_patterns)]
460 pub fn into_get_view_refs(self) -> Option<(SetupGetViewRefsResponder)> {
461 if let SetupRequest::GetViewRefs { responder } = self {
462 Some((responder))
463 } else {
464 None
465 }
466 }
467
468 #[allow(irrefutable_let_patterns)]
469 pub fn into_watch_viewport(self) -> Option<(SetupWatchViewportResponder)> {
470 if let SetupRequest::WatchViewport { responder } = self {
471 Some((responder))
472 } else {
473 None
474 }
475 }
476
477 pub fn method_name(&self) -> &'static str {
479 match *self {
480 SetupRequest::GetViewRefs { .. } => "get_view_refs",
481 SetupRequest::WatchViewport { .. } => "watch_viewport",
482 }
483 }
484}
485
486#[derive(Debug, Clone)]
487pub struct SetupControlHandle {
488 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
489}
490
491impl fidl::endpoints::ControlHandle for SetupControlHandle {
492 fn shutdown(&self) {
493 self.inner.shutdown()
494 }
495 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
496 self.inner.shutdown_with_epitaph(status)
497 }
498
499 fn is_closed(&self) -> bool {
500 self.inner.channel().is_closed()
501 }
502 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
503 self.inner.channel().on_closed()
504 }
505
506 #[cfg(target_os = "fuchsia")]
507 fn signal_peer(
508 &self,
509 clear_mask: zx::Signals,
510 set_mask: zx::Signals,
511 ) -> Result<(), zx_status::Status> {
512 use fidl::Peered;
513 self.inner.channel().signal_peer(clear_mask, set_mask)
514 }
515}
516
517impl SetupControlHandle {}
518
519#[must_use = "FIDL methods require a response to be sent"]
520#[derive(Debug)]
521pub struct SetupGetViewRefsResponder {
522 control_handle: std::mem::ManuallyDrop<SetupControlHandle>,
523 tx_id: u32,
524}
525
526impl std::ops::Drop for SetupGetViewRefsResponder {
530 fn drop(&mut self) {
531 self.control_handle.shutdown();
532 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
534 }
535}
536
537impl fidl::endpoints::Responder for SetupGetViewRefsResponder {
538 type ControlHandle = SetupControlHandle;
539
540 fn control_handle(&self) -> &SetupControlHandle {
541 &self.control_handle
542 }
543
544 fn drop_without_shutdown(mut self) {
545 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
547 std::mem::forget(self);
549 }
550}
551
552impl SetupGetViewRefsResponder {
553 pub fn send(
557 self,
558 mut context: fidl_fuchsia_ui_views::ViewRef,
559 mut target: fidl_fuchsia_ui_views::ViewRef,
560 ) -> Result<(), fidl::Error> {
561 let _result = self.send_raw(context, target);
562 if _result.is_err() {
563 self.control_handle.shutdown();
564 }
565 self.drop_without_shutdown();
566 _result
567 }
568
569 pub fn send_no_shutdown_on_err(
571 self,
572 mut context: fidl_fuchsia_ui_views::ViewRef,
573 mut target: fidl_fuchsia_ui_views::ViewRef,
574 ) -> Result<(), fidl::Error> {
575 let _result = self.send_raw(context, target);
576 self.drop_without_shutdown();
577 _result
578 }
579
580 fn send_raw(
581 &self,
582 mut context: fidl_fuchsia_ui_views::ViewRef,
583 mut target: fidl_fuchsia_ui_views::ViewRef,
584 ) -> Result<(), fidl::Error> {
585 self.control_handle.inner.send::<SetupGetViewRefsResponse>(
586 (&mut context, &mut target),
587 self.tx_id,
588 0x5d7cc6a455bdde6,
589 fidl::encoding::DynamicFlags::empty(),
590 )
591 }
592}
593
594#[must_use = "FIDL methods require a response to be sent"]
595#[derive(Debug)]
596pub struct SetupWatchViewportResponder {
597 control_handle: std::mem::ManuallyDrop<SetupControlHandle>,
598 tx_id: u32,
599}
600
601impl std::ops::Drop for SetupWatchViewportResponder {
605 fn drop(&mut self) {
606 self.control_handle.shutdown();
607 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
609 }
610}
611
612impl fidl::endpoints::Responder for SetupWatchViewportResponder {
613 type ControlHandle = SetupControlHandle;
614
615 fn control_handle(&self) -> &SetupControlHandle {
616 &self.control_handle
617 }
618
619 fn drop_without_shutdown(mut self) {
620 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
622 std::mem::forget(self);
624 }
625}
626
627impl SetupWatchViewportResponder {
628 pub fn send(
632 self,
633 mut viewport: &fidl_fuchsia_ui_pointerinjector::Viewport,
634 ) -> Result<(), fidl::Error> {
635 let _result = self.send_raw(viewport);
636 if _result.is_err() {
637 self.control_handle.shutdown();
638 }
639 self.drop_without_shutdown();
640 _result
641 }
642
643 pub fn send_no_shutdown_on_err(
645 self,
646 mut viewport: &fidl_fuchsia_ui_pointerinjector::Viewport,
647 ) -> Result<(), fidl::Error> {
648 let _result = self.send_raw(viewport);
649 self.drop_without_shutdown();
650 _result
651 }
652
653 fn send_raw(
654 &self,
655 mut viewport: &fidl_fuchsia_ui_pointerinjector::Viewport,
656 ) -> Result<(), fidl::Error> {
657 self.control_handle.inner.send::<SetupWatchViewportResponse>(
658 (viewport,),
659 self.tx_id,
660 0x5488bc48af9c943a,
661 fidl::encoding::DynamicFlags::empty(),
662 )
663 }
664}
665
666mod internal {
667 use super::*;
668
669 impl fidl::encoding::ResourceTypeMarker for SetupGetViewRefsResponse {
670 type Borrowed<'a> = &'a mut Self;
671 fn take_or_borrow<'a>(
672 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
673 ) -> Self::Borrowed<'a> {
674 value
675 }
676 }
677
678 unsafe impl fidl::encoding::TypeMarker for SetupGetViewRefsResponse {
679 type Owned = Self;
680
681 #[inline(always)]
682 fn inline_align(_context: fidl::encoding::Context) -> usize {
683 4
684 }
685
686 #[inline(always)]
687 fn inline_size(_context: fidl::encoding::Context) -> usize {
688 8
689 }
690 }
691
692 unsafe impl
693 fidl::encoding::Encode<
694 SetupGetViewRefsResponse,
695 fidl::encoding::DefaultFuchsiaResourceDialect,
696 > for &mut SetupGetViewRefsResponse
697 {
698 #[inline]
699 unsafe fn encode(
700 self,
701 encoder: &mut fidl::encoding::Encoder<
702 '_,
703 fidl::encoding::DefaultFuchsiaResourceDialect,
704 >,
705 offset: usize,
706 _depth: fidl::encoding::Depth,
707 ) -> fidl::Result<()> {
708 encoder.debug_check_bounds::<SetupGetViewRefsResponse>(offset);
709 fidl::encoding::Encode::<SetupGetViewRefsResponse, fidl::encoding::DefaultFuchsiaResourceDialect>::encode(
711 (
712 <fidl_fuchsia_ui_views::ViewRef as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.context),
713 <fidl_fuchsia_ui_views::ViewRef as fidl::encoding::ResourceTypeMarker>::take_or_borrow(&mut self.target),
714 ),
715 encoder, offset, _depth
716 )
717 }
718 }
719 unsafe impl<
720 T0: fidl::encoding::Encode<
721 fidl_fuchsia_ui_views::ViewRef,
722 fidl::encoding::DefaultFuchsiaResourceDialect,
723 >,
724 T1: fidl::encoding::Encode<
725 fidl_fuchsia_ui_views::ViewRef,
726 fidl::encoding::DefaultFuchsiaResourceDialect,
727 >,
728 >
729 fidl::encoding::Encode<
730 SetupGetViewRefsResponse,
731 fidl::encoding::DefaultFuchsiaResourceDialect,
732 > for (T0, T1)
733 {
734 #[inline]
735 unsafe fn encode(
736 self,
737 encoder: &mut fidl::encoding::Encoder<
738 '_,
739 fidl::encoding::DefaultFuchsiaResourceDialect,
740 >,
741 offset: usize,
742 depth: fidl::encoding::Depth,
743 ) -> fidl::Result<()> {
744 encoder.debug_check_bounds::<SetupGetViewRefsResponse>(offset);
745 self.0.encode(encoder, offset + 0, depth)?;
749 self.1.encode(encoder, offset + 4, depth)?;
750 Ok(())
751 }
752 }
753
754 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
755 for SetupGetViewRefsResponse
756 {
757 #[inline(always)]
758 fn new_empty() -> Self {
759 Self {
760 context: fidl::new_empty!(
761 fidl_fuchsia_ui_views::ViewRef,
762 fidl::encoding::DefaultFuchsiaResourceDialect
763 ),
764 target: fidl::new_empty!(
765 fidl_fuchsia_ui_views::ViewRef,
766 fidl::encoding::DefaultFuchsiaResourceDialect
767 ),
768 }
769 }
770
771 #[inline]
772 unsafe fn decode(
773 &mut self,
774 decoder: &mut fidl::encoding::Decoder<
775 '_,
776 fidl::encoding::DefaultFuchsiaResourceDialect,
777 >,
778 offset: usize,
779 _depth: fidl::encoding::Depth,
780 ) -> fidl::Result<()> {
781 decoder.debug_check_bounds::<Self>(offset);
782 fidl::decode!(
784 fidl_fuchsia_ui_views::ViewRef,
785 fidl::encoding::DefaultFuchsiaResourceDialect,
786 &mut self.context,
787 decoder,
788 offset + 0,
789 _depth
790 )?;
791 fidl::decode!(
792 fidl_fuchsia_ui_views::ViewRef,
793 fidl::encoding::DefaultFuchsiaResourceDialect,
794 &mut self.target,
795 decoder,
796 offset + 4,
797 _depth
798 )?;
799 Ok(())
800 }
801 }
802}