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_hardware_tee_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, PartialEq)]
15pub struct DeviceConnectorConnectToApplicationRequest {
16 pub application_uuid: fidl_fuchsia_tee::Uuid,
17 pub service_provider:
18 Option<fidl::endpoints::ClientEnd<fidl_fuchsia_tee_manager::ProviderMarker>>,
19 pub application_request: fidl::endpoints::ServerEnd<fidl_fuchsia_tee::ApplicationMarker>,
20}
21
22impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
23 for DeviceConnectorConnectToApplicationRequest
24{
25}
26
27#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
28pub struct DeviceConnectorConnectToDeviceInfoRequest {
29 pub device_info_request: fidl::endpoints::ServerEnd<fidl_fuchsia_tee::DeviceInfoMarker>,
30}
31
32impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
33 for DeviceConnectorConnectToDeviceInfoRequest
34{
35}
36
37#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
38pub struct DeviceConnectorMarker;
39
40impl fidl::endpoints::ProtocolMarker for DeviceConnectorMarker {
41 type Proxy = DeviceConnectorProxy;
42 type RequestStream = DeviceConnectorRequestStream;
43 #[cfg(target_os = "fuchsia")]
44 type SynchronousProxy = DeviceConnectorSynchronousProxy;
45
46 const DEBUG_NAME: &'static str = "(anonymous) DeviceConnector";
47}
48
49pub trait DeviceConnectorProxyInterface: Send + Sync {
50 fn r#connect_to_device_info(
51 &self,
52 device_info_request: fidl::endpoints::ServerEnd<fidl_fuchsia_tee::DeviceInfoMarker>,
53 ) -> Result<(), fidl::Error>;
54 fn r#connect_to_application(
55 &self,
56 application_uuid: &fidl_fuchsia_tee::Uuid,
57 service_provider: Option<
58 fidl::endpoints::ClientEnd<fidl_fuchsia_tee_manager::ProviderMarker>,
59 >,
60 application_request: fidl::endpoints::ServerEnd<fidl_fuchsia_tee::ApplicationMarker>,
61 ) -> Result<(), fidl::Error>;
62}
63#[derive(Debug)]
64#[cfg(target_os = "fuchsia")]
65pub struct DeviceConnectorSynchronousProxy {
66 client: fidl::client::sync::Client,
67}
68
69#[cfg(target_os = "fuchsia")]
70impl fidl::endpoints::SynchronousProxy for DeviceConnectorSynchronousProxy {
71 type Proxy = DeviceConnectorProxy;
72 type Protocol = DeviceConnectorMarker;
73
74 fn from_channel(inner: fidl::Channel) -> Self {
75 Self::new(inner)
76 }
77
78 fn into_channel(self) -> fidl::Channel {
79 self.client.into_channel()
80 }
81
82 fn as_channel(&self) -> &fidl::Channel {
83 self.client.as_channel()
84 }
85}
86
87#[cfg(target_os = "fuchsia")]
88impl DeviceConnectorSynchronousProxy {
89 pub fn new(channel: fidl::Channel) -> Self {
90 let protocol_name = <DeviceConnectorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
91 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
92 }
93
94 pub fn into_channel(self) -> fidl::Channel {
95 self.client.into_channel()
96 }
97
98 pub fn wait_for_event(
101 &self,
102 deadline: zx::MonotonicInstant,
103 ) -> Result<DeviceConnectorEvent, fidl::Error> {
104 DeviceConnectorEvent::decode(self.client.wait_for_event(deadline)?)
105 }
106
107 pub fn r#connect_to_device_info(
111 &self,
112 mut device_info_request: fidl::endpoints::ServerEnd<fidl_fuchsia_tee::DeviceInfoMarker>,
113 ) -> Result<(), fidl::Error> {
114 self.client.send::<DeviceConnectorConnectToDeviceInfoRequest>(
115 (device_info_request,),
116 0x5fa3623fd14f786,
117 fidl::encoding::DynamicFlags::empty(),
118 )
119 }
120
121 pub fn r#connect_to_application(
126 &self,
127 mut application_uuid: &fidl_fuchsia_tee::Uuid,
128 mut service_provider: Option<
129 fidl::endpoints::ClientEnd<fidl_fuchsia_tee_manager::ProviderMarker>,
130 >,
131 mut application_request: fidl::endpoints::ServerEnd<fidl_fuchsia_tee::ApplicationMarker>,
132 ) -> Result<(), fidl::Error> {
133 self.client.send::<DeviceConnectorConnectToApplicationRequest>(
134 (application_uuid, service_provider, application_request),
135 0x6e7f7e307df7816a,
136 fidl::encoding::DynamicFlags::empty(),
137 )
138 }
139}
140
141#[cfg(target_os = "fuchsia")]
142impl From<DeviceConnectorSynchronousProxy> for zx::Handle {
143 fn from(value: DeviceConnectorSynchronousProxy) -> Self {
144 value.into_channel().into()
145 }
146}
147
148#[cfg(target_os = "fuchsia")]
149impl From<fidl::Channel> for DeviceConnectorSynchronousProxy {
150 fn from(value: fidl::Channel) -> Self {
151 Self::new(value)
152 }
153}
154
155#[derive(Debug, Clone)]
156pub struct DeviceConnectorProxy {
157 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
158}
159
160impl fidl::endpoints::Proxy for DeviceConnectorProxy {
161 type Protocol = DeviceConnectorMarker;
162
163 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
164 Self::new(inner)
165 }
166
167 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
168 self.client.into_channel().map_err(|client| Self { client })
169 }
170
171 fn as_channel(&self) -> &::fidl::AsyncChannel {
172 self.client.as_channel()
173 }
174}
175
176impl DeviceConnectorProxy {
177 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
179 let protocol_name = <DeviceConnectorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
180 Self { client: fidl::client::Client::new(channel, protocol_name) }
181 }
182
183 pub fn take_event_stream(&self) -> DeviceConnectorEventStream {
189 DeviceConnectorEventStream { event_receiver: self.client.take_event_receiver() }
190 }
191
192 pub fn r#connect_to_device_info(
196 &self,
197 mut device_info_request: fidl::endpoints::ServerEnd<fidl_fuchsia_tee::DeviceInfoMarker>,
198 ) -> Result<(), fidl::Error> {
199 DeviceConnectorProxyInterface::r#connect_to_device_info(self, device_info_request)
200 }
201
202 pub fn r#connect_to_application(
207 &self,
208 mut application_uuid: &fidl_fuchsia_tee::Uuid,
209 mut service_provider: Option<
210 fidl::endpoints::ClientEnd<fidl_fuchsia_tee_manager::ProviderMarker>,
211 >,
212 mut application_request: fidl::endpoints::ServerEnd<fidl_fuchsia_tee::ApplicationMarker>,
213 ) -> Result<(), fidl::Error> {
214 DeviceConnectorProxyInterface::r#connect_to_application(
215 self,
216 application_uuid,
217 service_provider,
218 application_request,
219 )
220 }
221}
222
223impl DeviceConnectorProxyInterface for DeviceConnectorProxy {
224 fn r#connect_to_device_info(
225 &self,
226 mut device_info_request: fidl::endpoints::ServerEnd<fidl_fuchsia_tee::DeviceInfoMarker>,
227 ) -> Result<(), fidl::Error> {
228 self.client.send::<DeviceConnectorConnectToDeviceInfoRequest>(
229 (device_info_request,),
230 0x5fa3623fd14f786,
231 fidl::encoding::DynamicFlags::empty(),
232 )
233 }
234
235 fn r#connect_to_application(
236 &self,
237 mut application_uuid: &fidl_fuchsia_tee::Uuid,
238 mut service_provider: Option<
239 fidl::endpoints::ClientEnd<fidl_fuchsia_tee_manager::ProviderMarker>,
240 >,
241 mut application_request: fidl::endpoints::ServerEnd<fidl_fuchsia_tee::ApplicationMarker>,
242 ) -> Result<(), fidl::Error> {
243 self.client.send::<DeviceConnectorConnectToApplicationRequest>(
244 (application_uuid, service_provider, application_request),
245 0x6e7f7e307df7816a,
246 fidl::encoding::DynamicFlags::empty(),
247 )
248 }
249}
250
251pub struct DeviceConnectorEventStream {
252 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
253}
254
255impl std::marker::Unpin for DeviceConnectorEventStream {}
256
257impl futures::stream::FusedStream for DeviceConnectorEventStream {
258 fn is_terminated(&self) -> bool {
259 self.event_receiver.is_terminated()
260 }
261}
262
263impl futures::Stream for DeviceConnectorEventStream {
264 type Item = Result<DeviceConnectorEvent, fidl::Error>;
265
266 fn poll_next(
267 mut self: std::pin::Pin<&mut Self>,
268 cx: &mut std::task::Context<'_>,
269 ) -> std::task::Poll<Option<Self::Item>> {
270 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
271 &mut self.event_receiver,
272 cx
273 )?) {
274 Some(buf) => std::task::Poll::Ready(Some(DeviceConnectorEvent::decode(buf))),
275 None => std::task::Poll::Ready(None),
276 }
277 }
278}
279
280#[derive(Debug)]
281pub enum DeviceConnectorEvent {}
282
283impl DeviceConnectorEvent {
284 fn decode(
286 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
287 ) -> Result<DeviceConnectorEvent, fidl::Error> {
288 let (bytes, _handles) = buf.split_mut();
289 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
290 debug_assert_eq!(tx_header.tx_id, 0);
291 match tx_header.ordinal {
292 _ => Err(fidl::Error::UnknownOrdinal {
293 ordinal: tx_header.ordinal,
294 protocol_name:
295 <DeviceConnectorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
296 }),
297 }
298 }
299}
300
301pub struct DeviceConnectorRequestStream {
303 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
304 is_terminated: bool,
305}
306
307impl std::marker::Unpin for DeviceConnectorRequestStream {}
308
309impl futures::stream::FusedStream for DeviceConnectorRequestStream {
310 fn is_terminated(&self) -> bool {
311 self.is_terminated
312 }
313}
314
315impl fidl::endpoints::RequestStream for DeviceConnectorRequestStream {
316 type Protocol = DeviceConnectorMarker;
317 type ControlHandle = DeviceConnectorControlHandle;
318
319 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
320 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
321 }
322
323 fn control_handle(&self) -> Self::ControlHandle {
324 DeviceConnectorControlHandle { inner: self.inner.clone() }
325 }
326
327 fn into_inner(
328 self,
329 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
330 {
331 (self.inner, self.is_terminated)
332 }
333
334 fn from_inner(
335 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
336 is_terminated: bool,
337 ) -> Self {
338 Self { inner, is_terminated }
339 }
340}
341
342impl futures::Stream for DeviceConnectorRequestStream {
343 type Item = Result<DeviceConnectorRequest, fidl::Error>;
344
345 fn poll_next(
346 mut self: std::pin::Pin<&mut Self>,
347 cx: &mut std::task::Context<'_>,
348 ) -> std::task::Poll<Option<Self::Item>> {
349 let this = &mut *self;
350 if this.inner.check_shutdown(cx) {
351 this.is_terminated = true;
352 return std::task::Poll::Ready(None);
353 }
354 if this.is_terminated {
355 panic!("polled DeviceConnectorRequestStream after completion");
356 }
357 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
358 |bytes, handles| {
359 match this.inner.channel().read_etc(cx, bytes, handles) {
360 std::task::Poll::Ready(Ok(())) => {}
361 std::task::Poll::Pending => return std::task::Poll::Pending,
362 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
363 this.is_terminated = true;
364 return std::task::Poll::Ready(None);
365 }
366 std::task::Poll::Ready(Err(e)) => {
367 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
368 e.into(),
369 ))))
370 }
371 }
372
373 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
375
376 std::task::Poll::Ready(Some(match header.ordinal {
377 0x5fa3623fd14f786 => {
378 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
379 let mut req = fidl::new_empty!(
380 DeviceConnectorConnectToDeviceInfoRequest,
381 fidl::encoding::DefaultFuchsiaResourceDialect
382 );
383 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DeviceConnectorConnectToDeviceInfoRequest>(&header, _body_bytes, handles, &mut req)?;
384 let control_handle =
385 DeviceConnectorControlHandle { inner: this.inner.clone() };
386 Ok(DeviceConnectorRequest::ConnectToDeviceInfo {
387 device_info_request: req.device_info_request,
388
389 control_handle,
390 })
391 }
392 0x6e7f7e307df7816a => {
393 header.validate_request_tx_id(fidl::MethodType::OneWay)?;
394 let mut req = fidl::new_empty!(
395 DeviceConnectorConnectToApplicationRequest,
396 fidl::encoding::DefaultFuchsiaResourceDialect
397 );
398 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<DeviceConnectorConnectToApplicationRequest>(&header, _body_bytes, handles, &mut req)?;
399 let control_handle =
400 DeviceConnectorControlHandle { inner: this.inner.clone() };
401 Ok(DeviceConnectorRequest::ConnectToApplication {
402 application_uuid: req.application_uuid,
403 service_provider: req.service_provider,
404 application_request: req.application_request,
405
406 control_handle,
407 })
408 }
409 _ => Err(fidl::Error::UnknownOrdinal {
410 ordinal: header.ordinal,
411 protocol_name:
412 <DeviceConnectorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
413 }),
414 }))
415 },
416 )
417 }
418}
419
420#[derive(Debug)]
422pub enum DeviceConnectorRequest {
423 ConnectToDeviceInfo {
427 device_info_request: fidl::endpoints::ServerEnd<fidl_fuchsia_tee::DeviceInfoMarker>,
428 control_handle: DeviceConnectorControlHandle,
429 },
430 ConnectToApplication {
435 application_uuid: fidl_fuchsia_tee::Uuid,
436 service_provider:
437 Option<fidl::endpoints::ClientEnd<fidl_fuchsia_tee_manager::ProviderMarker>>,
438 application_request: fidl::endpoints::ServerEnd<fidl_fuchsia_tee::ApplicationMarker>,
439 control_handle: DeviceConnectorControlHandle,
440 },
441}
442
443impl DeviceConnectorRequest {
444 #[allow(irrefutable_let_patterns)]
445 pub fn into_connect_to_device_info(
446 self,
447 ) -> Option<(
448 fidl::endpoints::ServerEnd<fidl_fuchsia_tee::DeviceInfoMarker>,
449 DeviceConnectorControlHandle,
450 )> {
451 if let DeviceConnectorRequest::ConnectToDeviceInfo { device_info_request, control_handle } =
452 self
453 {
454 Some((device_info_request, control_handle))
455 } else {
456 None
457 }
458 }
459
460 #[allow(irrefutable_let_patterns)]
461 pub fn into_connect_to_application(
462 self,
463 ) -> Option<(
464 fidl_fuchsia_tee::Uuid,
465 Option<fidl::endpoints::ClientEnd<fidl_fuchsia_tee_manager::ProviderMarker>>,
466 fidl::endpoints::ServerEnd<fidl_fuchsia_tee::ApplicationMarker>,
467 DeviceConnectorControlHandle,
468 )> {
469 if let DeviceConnectorRequest::ConnectToApplication {
470 application_uuid,
471 service_provider,
472 application_request,
473 control_handle,
474 } = self
475 {
476 Some((application_uuid, service_provider, application_request, control_handle))
477 } else {
478 None
479 }
480 }
481
482 pub fn method_name(&self) -> &'static str {
484 match *self {
485 DeviceConnectorRequest::ConnectToDeviceInfo { .. } => "connect_to_device_info",
486 DeviceConnectorRequest::ConnectToApplication { .. } => "connect_to_application",
487 }
488 }
489}
490
491#[derive(Debug, Clone)]
492pub struct DeviceConnectorControlHandle {
493 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
494}
495
496impl fidl::endpoints::ControlHandle for DeviceConnectorControlHandle {
497 fn shutdown(&self) {
498 self.inner.shutdown()
499 }
500 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
501 self.inner.shutdown_with_epitaph(status)
502 }
503
504 fn is_closed(&self) -> bool {
505 self.inner.channel().is_closed()
506 }
507 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
508 self.inner.channel().on_closed()
509 }
510
511 #[cfg(target_os = "fuchsia")]
512 fn signal_peer(
513 &self,
514 clear_mask: zx::Signals,
515 set_mask: zx::Signals,
516 ) -> Result<(), zx_status::Status> {
517 use fidl::Peered;
518 self.inner.channel().signal_peer(clear_mask, set_mask)
519 }
520}
521
522impl DeviceConnectorControlHandle {}
523
524#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
525pub struct ServiceMarker;
526
527#[cfg(target_os = "fuchsia")]
528impl fidl::endpoints::ServiceMarker for ServiceMarker {
529 type Proxy = ServiceProxy;
530 type Request = ServiceRequest;
531 const SERVICE_NAME: &'static str = "fuchsia.hardware.tee.Service";
532}
533
534#[cfg(target_os = "fuchsia")]
537pub enum ServiceRequest {
538 DeviceConnector(DeviceConnectorRequestStream),
539}
540
541#[cfg(target_os = "fuchsia")]
542impl fidl::endpoints::ServiceRequest for ServiceRequest {
543 type Service = ServiceMarker;
544
545 fn dispatch(name: &str, _channel: fidl::AsyncChannel) -> Self {
546 match name {
547 "device_connector" => Self::DeviceConnector(
548 <DeviceConnectorRequestStream as fidl::endpoints::RequestStream>::from_channel(
549 _channel,
550 ),
551 ),
552 _ => panic!("no such member protocol name for service Service"),
553 }
554 }
555
556 fn member_names() -> &'static [&'static str] {
557 &["device_connector"]
558 }
559}
560#[cfg(target_os = "fuchsia")]
561pub struct ServiceProxy(#[allow(dead_code)] Box<dyn fidl::endpoints::MemberOpener>);
562
563#[cfg(target_os = "fuchsia")]
564impl fidl::endpoints::ServiceProxy for ServiceProxy {
565 type Service = ServiceMarker;
566
567 fn from_member_opener(opener: Box<dyn fidl::endpoints::MemberOpener>) -> Self {
568 Self(opener)
569 }
570}
571
572#[cfg(target_os = "fuchsia")]
573impl ServiceProxy {
574 pub fn connect_to_device_connector(&self) -> Result<DeviceConnectorProxy, fidl::Error> {
575 let (proxy, server_end) = fidl::endpoints::create_proxy::<DeviceConnectorMarker>();
576 self.connect_channel_to_device_connector(server_end)?;
577 Ok(proxy)
578 }
579
580 pub fn connect_to_device_connector_sync(
583 &self,
584 ) -> Result<DeviceConnectorSynchronousProxy, fidl::Error> {
585 let (proxy, server_end) = fidl::endpoints::create_sync_proxy::<DeviceConnectorMarker>();
586 self.connect_channel_to_device_connector(server_end)?;
587 Ok(proxy)
588 }
589
590 pub fn connect_channel_to_device_connector(
593 &self,
594 server_end: fidl::endpoints::ServerEnd<DeviceConnectorMarker>,
595 ) -> Result<(), fidl::Error> {
596 self.0.open_member("device_connector", server_end.into_channel())
597 }
598
599 pub fn instance_name(&self) -> &str {
600 self.0.instance_name()
601 }
602}
603
604mod internal {
605 use super::*;
606
607 impl fidl::encoding::ResourceTypeMarker for DeviceConnectorConnectToApplicationRequest {
608 type Borrowed<'a> = &'a mut Self;
609 fn take_or_borrow<'a>(
610 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
611 ) -> Self::Borrowed<'a> {
612 value
613 }
614 }
615
616 unsafe impl fidl::encoding::TypeMarker for DeviceConnectorConnectToApplicationRequest {
617 type Owned = Self;
618
619 #[inline(always)]
620 fn inline_align(_context: fidl::encoding::Context) -> usize {
621 4
622 }
623
624 #[inline(always)]
625 fn inline_size(_context: fidl::encoding::Context) -> usize {
626 24
627 }
628 }
629
630 unsafe impl
631 fidl::encoding::Encode<
632 DeviceConnectorConnectToApplicationRequest,
633 fidl::encoding::DefaultFuchsiaResourceDialect,
634 > for &mut DeviceConnectorConnectToApplicationRequest
635 {
636 #[inline]
637 unsafe fn encode(
638 self,
639 encoder: &mut fidl::encoding::Encoder<
640 '_,
641 fidl::encoding::DefaultFuchsiaResourceDialect,
642 >,
643 offset: usize,
644 _depth: fidl::encoding::Depth,
645 ) -> fidl::Result<()> {
646 encoder.debug_check_bounds::<DeviceConnectorConnectToApplicationRequest>(offset);
647 fidl::encoding::Encode::<
649 DeviceConnectorConnectToApplicationRequest,
650 fidl::encoding::DefaultFuchsiaResourceDialect,
651 >::encode(
652 (
653 <fidl_fuchsia_tee::Uuid as fidl::encoding::ValueTypeMarker>::borrow(
654 &self.application_uuid,
655 ),
656 <fidl::encoding::Optional<
657 fidl::encoding::Endpoint<
658 fidl::endpoints::ClientEnd<fidl_fuchsia_tee_manager::ProviderMarker>,
659 >,
660 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
661 &mut self.service_provider,
662 ),
663 <fidl::encoding::Endpoint<
664 fidl::endpoints::ServerEnd<fidl_fuchsia_tee::ApplicationMarker>,
665 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
666 &mut self.application_request,
667 ),
668 ),
669 encoder,
670 offset,
671 _depth,
672 )
673 }
674 }
675 unsafe impl<
676 T0: fidl::encoding::Encode<
677 fidl_fuchsia_tee::Uuid,
678 fidl::encoding::DefaultFuchsiaResourceDialect,
679 >,
680 T1: fidl::encoding::Encode<
681 fidl::encoding::Optional<
682 fidl::encoding::Endpoint<
683 fidl::endpoints::ClientEnd<fidl_fuchsia_tee_manager::ProviderMarker>,
684 >,
685 >,
686 fidl::encoding::DefaultFuchsiaResourceDialect,
687 >,
688 T2: fidl::encoding::Encode<
689 fidl::encoding::Endpoint<
690 fidl::endpoints::ServerEnd<fidl_fuchsia_tee::ApplicationMarker>,
691 >,
692 fidl::encoding::DefaultFuchsiaResourceDialect,
693 >,
694 >
695 fidl::encoding::Encode<
696 DeviceConnectorConnectToApplicationRequest,
697 fidl::encoding::DefaultFuchsiaResourceDialect,
698 > for (T0, T1, T2)
699 {
700 #[inline]
701 unsafe fn encode(
702 self,
703 encoder: &mut fidl::encoding::Encoder<
704 '_,
705 fidl::encoding::DefaultFuchsiaResourceDialect,
706 >,
707 offset: usize,
708 depth: fidl::encoding::Depth,
709 ) -> fidl::Result<()> {
710 encoder.debug_check_bounds::<DeviceConnectorConnectToApplicationRequest>(offset);
711 self.0.encode(encoder, offset + 0, depth)?;
715 self.1.encode(encoder, offset + 16, depth)?;
716 self.2.encode(encoder, offset + 20, depth)?;
717 Ok(())
718 }
719 }
720
721 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
722 for DeviceConnectorConnectToApplicationRequest
723 {
724 #[inline(always)]
725 fn new_empty() -> Self {
726 Self {
727 application_uuid: fidl::new_empty!(
728 fidl_fuchsia_tee::Uuid,
729 fidl::encoding::DefaultFuchsiaResourceDialect
730 ),
731 service_provider: fidl::new_empty!(
732 fidl::encoding::Optional<
733 fidl::encoding::Endpoint<
734 fidl::endpoints::ClientEnd<fidl_fuchsia_tee_manager::ProviderMarker>,
735 >,
736 >,
737 fidl::encoding::DefaultFuchsiaResourceDialect
738 ),
739 application_request: fidl::new_empty!(
740 fidl::encoding::Endpoint<
741 fidl::endpoints::ServerEnd<fidl_fuchsia_tee::ApplicationMarker>,
742 >,
743 fidl::encoding::DefaultFuchsiaResourceDialect
744 ),
745 }
746 }
747
748 #[inline]
749 unsafe fn decode(
750 &mut self,
751 decoder: &mut fidl::encoding::Decoder<
752 '_,
753 fidl::encoding::DefaultFuchsiaResourceDialect,
754 >,
755 offset: usize,
756 _depth: fidl::encoding::Depth,
757 ) -> fidl::Result<()> {
758 decoder.debug_check_bounds::<Self>(offset);
759 fidl::decode!(
761 fidl_fuchsia_tee::Uuid,
762 fidl::encoding::DefaultFuchsiaResourceDialect,
763 &mut self.application_uuid,
764 decoder,
765 offset + 0,
766 _depth
767 )?;
768 fidl::decode!(
769 fidl::encoding::Optional<
770 fidl::encoding::Endpoint<
771 fidl::endpoints::ClientEnd<fidl_fuchsia_tee_manager::ProviderMarker>,
772 >,
773 >,
774 fidl::encoding::DefaultFuchsiaResourceDialect,
775 &mut self.service_provider,
776 decoder,
777 offset + 16,
778 _depth
779 )?;
780 fidl::decode!(
781 fidl::encoding::Endpoint<
782 fidl::endpoints::ServerEnd<fidl_fuchsia_tee::ApplicationMarker>,
783 >,
784 fidl::encoding::DefaultFuchsiaResourceDialect,
785 &mut self.application_request,
786 decoder,
787 offset + 20,
788 _depth
789 )?;
790 Ok(())
791 }
792 }
793
794 impl fidl::encoding::ResourceTypeMarker for DeviceConnectorConnectToDeviceInfoRequest {
795 type Borrowed<'a> = &'a mut Self;
796 fn take_or_borrow<'a>(
797 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
798 ) -> Self::Borrowed<'a> {
799 value
800 }
801 }
802
803 unsafe impl fidl::encoding::TypeMarker for DeviceConnectorConnectToDeviceInfoRequest {
804 type Owned = Self;
805
806 #[inline(always)]
807 fn inline_align(_context: fidl::encoding::Context) -> usize {
808 4
809 }
810
811 #[inline(always)]
812 fn inline_size(_context: fidl::encoding::Context) -> usize {
813 4
814 }
815 }
816
817 unsafe impl
818 fidl::encoding::Encode<
819 DeviceConnectorConnectToDeviceInfoRequest,
820 fidl::encoding::DefaultFuchsiaResourceDialect,
821 > for &mut DeviceConnectorConnectToDeviceInfoRequest
822 {
823 #[inline]
824 unsafe fn encode(
825 self,
826 encoder: &mut fidl::encoding::Encoder<
827 '_,
828 fidl::encoding::DefaultFuchsiaResourceDialect,
829 >,
830 offset: usize,
831 _depth: fidl::encoding::Depth,
832 ) -> fidl::Result<()> {
833 encoder.debug_check_bounds::<DeviceConnectorConnectToDeviceInfoRequest>(offset);
834 fidl::encoding::Encode::<
836 DeviceConnectorConnectToDeviceInfoRequest,
837 fidl::encoding::DefaultFuchsiaResourceDialect,
838 >::encode(
839 (<fidl::encoding::Endpoint<
840 fidl::endpoints::ServerEnd<fidl_fuchsia_tee::DeviceInfoMarker>,
841 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
842 &mut self.device_info_request,
843 ),),
844 encoder,
845 offset,
846 _depth,
847 )
848 }
849 }
850 unsafe impl<
851 T0: fidl::encoding::Encode<
852 fidl::encoding::Endpoint<
853 fidl::endpoints::ServerEnd<fidl_fuchsia_tee::DeviceInfoMarker>,
854 >,
855 fidl::encoding::DefaultFuchsiaResourceDialect,
856 >,
857 >
858 fidl::encoding::Encode<
859 DeviceConnectorConnectToDeviceInfoRequest,
860 fidl::encoding::DefaultFuchsiaResourceDialect,
861 > for (T0,)
862 {
863 #[inline]
864 unsafe fn encode(
865 self,
866 encoder: &mut fidl::encoding::Encoder<
867 '_,
868 fidl::encoding::DefaultFuchsiaResourceDialect,
869 >,
870 offset: usize,
871 depth: fidl::encoding::Depth,
872 ) -> fidl::Result<()> {
873 encoder.debug_check_bounds::<DeviceConnectorConnectToDeviceInfoRequest>(offset);
874 self.0.encode(encoder, offset + 0, depth)?;
878 Ok(())
879 }
880 }
881
882 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
883 for DeviceConnectorConnectToDeviceInfoRequest
884 {
885 #[inline(always)]
886 fn new_empty() -> Self {
887 Self {
888 device_info_request: fidl::new_empty!(
889 fidl::encoding::Endpoint<
890 fidl::endpoints::ServerEnd<fidl_fuchsia_tee::DeviceInfoMarker>,
891 >,
892 fidl::encoding::DefaultFuchsiaResourceDialect
893 ),
894 }
895 }
896
897 #[inline]
898 unsafe fn decode(
899 &mut self,
900 decoder: &mut fidl::encoding::Decoder<
901 '_,
902 fidl::encoding::DefaultFuchsiaResourceDialect,
903 >,
904 offset: usize,
905 _depth: fidl::encoding::Depth,
906 ) -> fidl::Result<()> {
907 decoder.debug_check_bounds::<Self>(offset);
908 fidl::decode!(
910 fidl::encoding::Endpoint<
911 fidl::endpoints::ServerEnd<fidl_fuchsia_tee::DeviceInfoMarker>,
912 >,
913 fidl::encoding::DefaultFuchsiaResourceDialect,
914 &mut self.device_info_request,
915 decoder,
916 offset + 0,
917 _depth
918 )?;
919 Ok(())
920 }
921 }
922}