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_developer_remotecontrol_connector_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
15pub struct ConnectorEstablishCircuitRequest {
16 pub id: u64,
17 pub socket: fidl::Socket,
18}
19
20impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
21 for ConnectorEstablishCircuitRequest
22{
23}
24
25#[derive(Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
26pub struct ConnectorFdomainToolboxSocketRequest {
27 pub socket: fidl::Socket,
28}
29
30impl fidl::Standalone<fidl::encoding::DefaultFuchsiaResourceDialect>
31 for ConnectorFdomainToolboxSocketRequest
32{
33}
34
35#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
36pub struct ConnectorMarker;
37
38impl fidl::endpoints::ProtocolMarker for ConnectorMarker {
39 type Proxy = ConnectorProxy;
40 type RequestStream = ConnectorRequestStream;
41 #[cfg(target_os = "fuchsia")]
42 type SynchronousProxy = ConnectorSynchronousProxy;
43
44 const DEBUG_NAME: &'static str = "fuchsia.developer.remotecontrol.connector.Connector";
45}
46impl fidl::endpoints::DiscoverableProtocolMarker for ConnectorMarker {}
47
48pub trait ConnectorProxyInterface: Send + Sync {
49 type EstablishCircuitResponseFut: std::future::Future<Output = Result<u64, fidl::Error>> + Send;
50 fn r#establish_circuit(
51 &self,
52 id: u64,
53 socket: fidl::Socket,
54 ) -> Self::EstablishCircuitResponseFut;
55 type FdomainToolboxSocketResponseFut: std::future::Future<Output = Result<(), fidl::Error>>
56 + Send;
57 fn r#fdomain_toolbox_socket(
58 &self,
59 socket: fidl::Socket,
60 ) -> Self::FdomainToolboxSocketResponseFut;
61}
62#[derive(Debug)]
63#[cfg(target_os = "fuchsia")]
64pub struct ConnectorSynchronousProxy {
65 client: fidl::client::sync::Client,
66}
67
68#[cfg(target_os = "fuchsia")]
69impl fidl::endpoints::SynchronousProxy for ConnectorSynchronousProxy {
70 type Proxy = ConnectorProxy;
71 type Protocol = ConnectorMarker;
72
73 fn from_channel(inner: fidl::Channel) -> Self {
74 Self::new(inner)
75 }
76
77 fn into_channel(self) -> fidl::Channel {
78 self.client.into_channel()
79 }
80
81 fn as_channel(&self) -> &fidl::Channel {
82 self.client.as_channel()
83 }
84}
85
86#[cfg(target_os = "fuchsia")]
87impl ConnectorSynchronousProxy {
88 pub fn new(channel: fidl::Channel) -> Self {
89 let protocol_name = <ConnectorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
90 Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
91 }
92
93 pub fn into_channel(self) -> fidl::Channel {
94 self.client.into_channel()
95 }
96
97 pub fn wait_for_event(
100 &self,
101 deadline: zx::MonotonicInstant,
102 ) -> Result<ConnectorEvent, fidl::Error> {
103 ConnectorEvent::decode(self.client.wait_for_event(deadline)?)
104 }
105
106 pub fn r#establish_circuit(
107 &self,
108 mut id: u64,
109 mut socket: fidl::Socket,
110 ___deadline: zx::MonotonicInstant,
111 ) -> Result<u64, fidl::Error> {
112 let _response = self
113 .client
114 .send_query::<ConnectorEstablishCircuitRequest, ConnectorEstablishCircuitResponse>(
115 (id, socket),
116 0x34f64270f6eb7feb,
117 fidl::encoding::DynamicFlags::empty(),
118 ___deadline,
119 )?;
120 Ok(_response.overnet_id)
121 }
122
123 pub fn r#fdomain_toolbox_socket(
124 &self,
125 mut socket: fidl::Socket,
126 ___deadline: zx::MonotonicInstant,
127 ) -> Result<(), fidl::Error> {
128 let _response = self
129 .client
130 .send_query::<ConnectorFdomainToolboxSocketRequest, fidl::encoding::EmptyPayload>(
131 (socket,),
132 0x6fec63852eec8566,
133 fidl::encoding::DynamicFlags::empty(),
134 ___deadline,
135 )?;
136 Ok(_response)
137 }
138}
139
140#[cfg(target_os = "fuchsia")]
141impl From<ConnectorSynchronousProxy> for zx::Handle {
142 fn from(value: ConnectorSynchronousProxy) -> Self {
143 value.into_channel().into()
144 }
145}
146
147#[cfg(target_os = "fuchsia")]
148impl From<fidl::Channel> for ConnectorSynchronousProxy {
149 fn from(value: fidl::Channel) -> Self {
150 Self::new(value)
151 }
152}
153
154#[derive(Debug, Clone)]
155pub struct ConnectorProxy {
156 client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
157}
158
159impl fidl::endpoints::Proxy for ConnectorProxy {
160 type Protocol = ConnectorMarker;
161
162 fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
163 Self::new(inner)
164 }
165
166 fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
167 self.client.into_channel().map_err(|client| Self { client })
168 }
169
170 fn as_channel(&self) -> &::fidl::AsyncChannel {
171 self.client.as_channel()
172 }
173}
174
175impl ConnectorProxy {
176 pub fn new(channel: ::fidl::AsyncChannel) -> Self {
178 let protocol_name = <ConnectorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
179 Self { client: fidl::client::Client::new(channel, protocol_name) }
180 }
181
182 pub fn take_event_stream(&self) -> ConnectorEventStream {
188 ConnectorEventStream { event_receiver: self.client.take_event_receiver() }
189 }
190
191 pub fn r#establish_circuit(
192 &self,
193 mut id: u64,
194 mut socket: fidl::Socket,
195 ) -> fidl::client::QueryResponseFut<u64, fidl::encoding::DefaultFuchsiaResourceDialect> {
196 ConnectorProxyInterface::r#establish_circuit(self, id, socket)
197 }
198
199 pub fn r#fdomain_toolbox_socket(
200 &self,
201 mut socket: fidl::Socket,
202 ) -> fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect> {
203 ConnectorProxyInterface::r#fdomain_toolbox_socket(self, socket)
204 }
205}
206
207impl ConnectorProxyInterface for ConnectorProxy {
208 type EstablishCircuitResponseFut =
209 fidl::client::QueryResponseFut<u64, fidl::encoding::DefaultFuchsiaResourceDialect>;
210 fn r#establish_circuit(
211 &self,
212 mut id: u64,
213 mut socket: fidl::Socket,
214 ) -> Self::EstablishCircuitResponseFut {
215 fn _decode(
216 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
217 ) -> Result<u64, fidl::Error> {
218 let _response = fidl::client::decode_transaction_body::<
219 ConnectorEstablishCircuitResponse,
220 fidl::encoding::DefaultFuchsiaResourceDialect,
221 0x34f64270f6eb7feb,
222 >(_buf?)?;
223 Ok(_response.overnet_id)
224 }
225 self.client.send_query_and_decode::<ConnectorEstablishCircuitRequest, u64>(
226 (id, socket),
227 0x34f64270f6eb7feb,
228 fidl::encoding::DynamicFlags::empty(),
229 _decode,
230 )
231 }
232
233 type FdomainToolboxSocketResponseFut =
234 fidl::client::QueryResponseFut<(), fidl::encoding::DefaultFuchsiaResourceDialect>;
235 fn r#fdomain_toolbox_socket(
236 &self,
237 mut socket: fidl::Socket,
238 ) -> Self::FdomainToolboxSocketResponseFut {
239 fn _decode(
240 mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
241 ) -> Result<(), fidl::Error> {
242 let _response = fidl::client::decode_transaction_body::<
243 fidl::encoding::EmptyPayload,
244 fidl::encoding::DefaultFuchsiaResourceDialect,
245 0x6fec63852eec8566,
246 >(_buf?)?;
247 Ok(_response)
248 }
249 self.client.send_query_and_decode::<ConnectorFdomainToolboxSocketRequest, ()>(
250 (socket,),
251 0x6fec63852eec8566,
252 fidl::encoding::DynamicFlags::empty(),
253 _decode,
254 )
255 }
256}
257
258pub struct ConnectorEventStream {
259 event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
260}
261
262impl std::marker::Unpin for ConnectorEventStream {}
263
264impl futures::stream::FusedStream for ConnectorEventStream {
265 fn is_terminated(&self) -> bool {
266 self.event_receiver.is_terminated()
267 }
268}
269
270impl futures::Stream for ConnectorEventStream {
271 type Item = Result<ConnectorEvent, fidl::Error>;
272
273 fn poll_next(
274 mut self: std::pin::Pin<&mut Self>,
275 cx: &mut std::task::Context<'_>,
276 ) -> std::task::Poll<Option<Self::Item>> {
277 match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
278 &mut self.event_receiver,
279 cx
280 )?) {
281 Some(buf) => std::task::Poll::Ready(Some(ConnectorEvent::decode(buf))),
282 None => std::task::Poll::Ready(None),
283 }
284 }
285}
286
287#[derive(Debug)]
288pub enum ConnectorEvent {}
289
290impl ConnectorEvent {
291 fn decode(
293 mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
294 ) -> Result<ConnectorEvent, fidl::Error> {
295 let (bytes, _handles) = buf.split_mut();
296 let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
297 debug_assert_eq!(tx_header.tx_id, 0);
298 match tx_header.ordinal {
299 _ => Err(fidl::Error::UnknownOrdinal {
300 ordinal: tx_header.ordinal,
301 protocol_name: <ConnectorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
302 }),
303 }
304 }
305}
306
307pub struct ConnectorRequestStream {
309 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
310 is_terminated: bool,
311}
312
313impl std::marker::Unpin for ConnectorRequestStream {}
314
315impl futures::stream::FusedStream for ConnectorRequestStream {
316 fn is_terminated(&self) -> bool {
317 self.is_terminated
318 }
319}
320
321impl fidl::endpoints::RequestStream for ConnectorRequestStream {
322 type Protocol = ConnectorMarker;
323 type ControlHandle = ConnectorControlHandle;
324
325 fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
326 Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
327 }
328
329 fn control_handle(&self) -> Self::ControlHandle {
330 ConnectorControlHandle { inner: self.inner.clone() }
331 }
332
333 fn into_inner(
334 self,
335 ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
336 {
337 (self.inner, self.is_terminated)
338 }
339
340 fn from_inner(
341 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
342 is_terminated: bool,
343 ) -> Self {
344 Self { inner, is_terminated }
345 }
346}
347
348impl futures::Stream for ConnectorRequestStream {
349 type Item = Result<ConnectorRequest, fidl::Error>;
350
351 fn poll_next(
352 mut self: std::pin::Pin<&mut Self>,
353 cx: &mut std::task::Context<'_>,
354 ) -> std::task::Poll<Option<Self::Item>> {
355 let this = &mut *self;
356 if this.inner.check_shutdown(cx) {
357 this.is_terminated = true;
358 return std::task::Poll::Ready(None);
359 }
360 if this.is_terminated {
361 panic!("polled ConnectorRequestStream after completion");
362 }
363 fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
364 |bytes, handles| {
365 match this.inner.channel().read_etc(cx, bytes, handles) {
366 std::task::Poll::Ready(Ok(())) => {}
367 std::task::Poll::Pending => return std::task::Poll::Pending,
368 std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
369 this.is_terminated = true;
370 return std::task::Poll::Ready(None);
371 }
372 std::task::Poll::Ready(Err(e)) => {
373 return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
374 e.into(),
375 ))))
376 }
377 }
378
379 let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
381
382 std::task::Poll::Ready(Some(match header.ordinal {
383 0x34f64270f6eb7feb => {
384 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
385 let mut req = fidl::new_empty!(
386 ConnectorEstablishCircuitRequest,
387 fidl::encoding::DefaultFuchsiaResourceDialect
388 );
389 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ConnectorEstablishCircuitRequest>(&header, _body_bytes, handles, &mut req)?;
390 let control_handle = ConnectorControlHandle { inner: this.inner.clone() };
391 Ok(ConnectorRequest::EstablishCircuit {
392 id: req.id,
393 socket: req.socket,
394
395 responder: ConnectorEstablishCircuitResponder {
396 control_handle: std::mem::ManuallyDrop::new(control_handle),
397 tx_id: header.tx_id,
398 },
399 })
400 }
401 0x6fec63852eec8566 => {
402 header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
403 let mut req = fidl::new_empty!(
404 ConnectorFdomainToolboxSocketRequest,
405 fidl::encoding::DefaultFuchsiaResourceDialect
406 );
407 fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ConnectorFdomainToolboxSocketRequest>(&header, _body_bytes, handles, &mut req)?;
408 let control_handle = ConnectorControlHandle { inner: this.inner.clone() };
409 Ok(ConnectorRequest::FdomainToolboxSocket {
410 socket: req.socket,
411
412 responder: ConnectorFdomainToolboxSocketResponder {
413 control_handle: std::mem::ManuallyDrop::new(control_handle),
414 tx_id: header.tx_id,
415 },
416 })
417 }
418 _ => Err(fidl::Error::UnknownOrdinal {
419 ordinal: header.ordinal,
420 protocol_name:
421 <ConnectorMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
422 }),
423 }))
424 },
425 )
426 }
427}
428
429#[derive(Debug)]
430pub enum ConnectorRequest {
431 EstablishCircuit {
432 id: u64,
433 socket: fidl::Socket,
434 responder: ConnectorEstablishCircuitResponder,
435 },
436 FdomainToolboxSocket {
437 socket: fidl::Socket,
438 responder: ConnectorFdomainToolboxSocketResponder,
439 },
440}
441
442impl ConnectorRequest {
443 #[allow(irrefutable_let_patterns)]
444 pub fn into_establish_circuit(
445 self,
446 ) -> Option<(u64, fidl::Socket, ConnectorEstablishCircuitResponder)> {
447 if let ConnectorRequest::EstablishCircuit { id, socket, responder } = self {
448 Some((id, socket, responder))
449 } else {
450 None
451 }
452 }
453
454 #[allow(irrefutable_let_patterns)]
455 pub fn into_fdomain_toolbox_socket(
456 self,
457 ) -> Option<(fidl::Socket, ConnectorFdomainToolboxSocketResponder)> {
458 if let ConnectorRequest::FdomainToolboxSocket { socket, responder } = self {
459 Some((socket, responder))
460 } else {
461 None
462 }
463 }
464
465 pub fn method_name(&self) -> &'static str {
467 match *self {
468 ConnectorRequest::EstablishCircuit { .. } => "establish_circuit",
469 ConnectorRequest::FdomainToolboxSocket { .. } => "fdomain_toolbox_socket",
470 }
471 }
472}
473
474#[derive(Debug, Clone)]
475pub struct ConnectorControlHandle {
476 inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
477}
478
479impl fidl::endpoints::ControlHandle for ConnectorControlHandle {
480 fn shutdown(&self) {
481 self.inner.shutdown()
482 }
483 fn shutdown_with_epitaph(&self, status: zx_status::Status) {
484 self.inner.shutdown_with_epitaph(status)
485 }
486
487 fn is_closed(&self) -> bool {
488 self.inner.channel().is_closed()
489 }
490 fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
491 self.inner.channel().on_closed()
492 }
493
494 #[cfg(target_os = "fuchsia")]
495 fn signal_peer(
496 &self,
497 clear_mask: zx::Signals,
498 set_mask: zx::Signals,
499 ) -> Result<(), zx_status::Status> {
500 use fidl::Peered;
501 self.inner.channel().signal_peer(clear_mask, set_mask)
502 }
503}
504
505impl ConnectorControlHandle {}
506
507#[must_use = "FIDL methods require a response to be sent"]
508#[derive(Debug)]
509pub struct ConnectorEstablishCircuitResponder {
510 control_handle: std::mem::ManuallyDrop<ConnectorControlHandle>,
511 tx_id: u32,
512}
513
514impl std::ops::Drop for ConnectorEstablishCircuitResponder {
518 fn drop(&mut self) {
519 self.control_handle.shutdown();
520 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
522 }
523}
524
525impl fidl::endpoints::Responder for ConnectorEstablishCircuitResponder {
526 type ControlHandle = ConnectorControlHandle;
527
528 fn control_handle(&self) -> &ConnectorControlHandle {
529 &self.control_handle
530 }
531
532 fn drop_without_shutdown(mut self) {
533 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
535 std::mem::forget(self);
537 }
538}
539
540impl ConnectorEstablishCircuitResponder {
541 pub fn send(self, mut overnet_id: u64) -> Result<(), fidl::Error> {
545 let _result = self.send_raw(overnet_id);
546 if _result.is_err() {
547 self.control_handle.shutdown();
548 }
549 self.drop_without_shutdown();
550 _result
551 }
552
553 pub fn send_no_shutdown_on_err(self, mut overnet_id: u64) -> Result<(), fidl::Error> {
555 let _result = self.send_raw(overnet_id);
556 self.drop_without_shutdown();
557 _result
558 }
559
560 fn send_raw(&self, mut overnet_id: u64) -> Result<(), fidl::Error> {
561 self.control_handle.inner.send::<ConnectorEstablishCircuitResponse>(
562 (overnet_id,),
563 self.tx_id,
564 0x34f64270f6eb7feb,
565 fidl::encoding::DynamicFlags::empty(),
566 )
567 }
568}
569
570#[must_use = "FIDL methods require a response to be sent"]
571#[derive(Debug)]
572pub struct ConnectorFdomainToolboxSocketResponder {
573 control_handle: std::mem::ManuallyDrop<ConnectorControlHandle>,
574 tx_id: u32,
575}
576
577impl std::ops::Drop for ConnectorFdomainToolboxSocketResponder {
581 fn drop(&mut self) {
582 self.control_handle.shutdown();
583 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
585 }
586}
587
588impl fidl::endpoints::Responder for ConnectorFdomainToolboxSocketResponder {
589 type ControlHandle = ConnectorControlHandle;
590
591 fn control_handle(&self) -> &ConnectorControlHandle {
592 &self.control_handle
593 }
594
595 fn drop_without_shutdown(mut self) {
596 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
598 std::mem::forget(self);
600 }
601}
602
603impl ConnectorFdomainToolboxSocketResponder {
604 pub fn send(self) -> Result<(), fidl::Error> {
608 let _result = self.send_raw();
609 if _result.is_err() {
610 self.control_handle.shutdown();
611 }
612 self.drop_without_shutdown();
613 _result
614 }
615
616 pub fn send_no_shutdown_on_err(self) -> Result<(), fidl::Error> {
618 let _result = self.send_raw();
619 self.drop_without_shutdown();
620 _result
621 }
622
623 fn send_raw(&self) -> Result<(), fidl::Error> {
624 self.control_handle.inner.send::<fidl::encoding::EmptyPayload>(
625 (),
626 self.tx_id,
627 0x6fec63852eec8566,
628 fidl::encoding::DynamicFlags::empty(),
629 )
630 }
631}
632
633mod internal {
634 use super::*;
635
636 impl fidl::encoding::ResourceTypeMarker for ConnectorEstablishCircuitRequest {
637 type Borrowed<'a> = &'a mut Self;
638 fn take_or_borrow<'a>(
639 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
640 ) -> Self::Borrowed<'a> {
641 value
642 }
643 }
644
645 unsafe impl fidl::encoding::TypeMarker for ConnectorEstablishCircuitRequest {
646 type Owned = Self;
647
648 #[inline(always)]
649 fn inline_align(_context: fidl::encoding::Context) -> usize {
650 8
651 }
652
653 #[inline(always)]
654 fn inline_size(_context: fidl::encoding::Context) -> usize {
655 16
656 }
657 }
658
659 unsafe impl
660 fidl::encoding::Encode<
661 ConnectorEstablishCircuitRequest,
662 fidl::encoding::DefaultFuchsiaResourceDialect,
663 > for &mut ConnectorEstablishCircuitRequest
664 {
665 #[inline]
666 unsafe fn encode(
667 self,
668 encoder: &mut fidl::encoding::Encoder<
669 '_,
670 fidl::encoding::DefaultFuchsiaResourceDialect,
671 >,
672 offset: usize,
673 _depth: fidl::encoding::Depth,
674 ) -> fidl::Result<()> {
675 encoder.debug_check_bounds::<ConnectorEstablishCircuitRequest>(offset);
676 fidl::encoding::Encode::<
678 ConnectorEstablishCircuitRequest,
679 fidl::encoding::DefaultFuchsiaResourceDialect,
680 >::encode(
681 (
682 <u64 as fidl::encoding::ValueTypeMarker>::borrow(&self.id),
683 <fidl::encoding::HandleType<
684 fidl::Socket,
685 { fidl::ObjectType::SOCKET.into_raw() },
686 2147483648,
687 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
688 &mut self.socket
689 ),
690 ),
691 encoder,
692 offset,
693 _depth,
694 )
695 }
696 }
697 unsafe impl<
698 T0: fidl::encoding::Encode<u64, fidl::encoding::DefaultFuchsiaResourceDialect>,
699 T1: fidl::encoding::Encode<
700 fidl::encoding::HandleType<
701 fidl::Socket,
702 { fidl::ObjectType::SOCKET.into_raw() },
703 2147483648,
704 >,
705 fidl::encoding::DefaultFuchsiaResourceDialect,
706 >,
707 >
708 fidl::encoding::Encode<
709 ConnectorEstablishCircuitRequest,
710 fidl::encoding::DefaultFuchsiaResourceDialect,
711 > for (T0, T1)
712 {
713 #[inline]
714 unsafe fn encode(
715 self,
716 encoder: &mut fidl::encoding::Encoder<
717 '_,
718 fidl::encoding::DefaultFuchsiaResourceDialect,
719 >,
720 offset: usize,
721 depth: fidl::encoding::Depth,
722 ) -> fidl::Result<()> {
723 encoder.debug_check_bounds::<ConnectorEstablishCircuitRequest>(offset);
724 unsafe {
727 let ptr = encoder.buf.as_mut_ptr().add(offset).offset(8);
728 (ptr as *mut u64).write_unaligned(0);
729 }
730 self.0.encode(encoder, offset + 0, depth)?;
732 self.1.encode(encoder, offset + 8, depth)?;
733 Ok(())
734 }
735 }
736
737 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
738 for ConnectorEstablishCircuitRequest
739 {
740 #[inline(always)]
741 fn new_empty() -> Self {
742 Self {
743 id: fidl::new_empty!(u64, fidl::encoding::DefaultFuchsiaResourceDialect),
744 socket: fidl::new_empty!(fidl::encoding::HandleType<fidl::Socket, { fidl::ObjectType::SOCKET.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect),
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 let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(8) };
761 let padval = unsafe { (ptr as *const u64).read_unaligned() };
762 let mask = 0xffffffff00000000u64;
763 let maskedval = padval & mask;
764 if maskedval != 0 {
765 return Err(fidl::Error::NonZeroPadding {
766 padding_start: offset + 8 + ((mask as u64).trailing_zeros() / 8) as usize,
767 });
768 }
769 fidl::decode!(
770 u64,
771 fidl::encoding::DefaultFuchsiaResourceDialect,
772 &mut self.id,
773 decoder,
774 offset + 0,
775 _depth
776 )?;
777 fidl::decode!(fidl::encoding::HandleType<fidl::Socket, { fidl::ObjectType::SOCKET.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, &mut self.socket, decoder, offset + 8, _depth)?;
778 Ok(())
779 }
780 }
781
782 impl fidl::encoding::ResourceTypeMarker for ConnectorFdomainToolboxSocketRequest {
783 type Borrowed<'a> = &'a mut Self;
784 fn take_or_borrow<'a>(
785 value: &'a mut <Self as fidl::encoding::TypeMarker>::Owned,
786 ) -> Self::Borrowed<'a> {
787 value
788 }
789 }
790
791 unsafe impl fidl::encoding::TypeMarker for ConnectorFdomainToolboxSocketRequest {
792 type Owned = Self;
793
794 #[inline(always)]
795 fn inline_align(_context: fidl::encoding::Context) -> usize {
796 4
797 }
798
799 #[inline(always)]
800 fn inline_size(_context: fidl::encoding::Context) -> usize {
801 4
802 }
803 }
804
805 unsafe impl
806 fidl::encoding::Encode<
807 ConnectorFdomainToolboxSocketRequest,
808 fidl::encoding::DefaultFuchsiaResourceDialect,
809 > for &mut ConnectorFdomainToolboxSocketRequest
810 {
811 #[inline]
812 unsafe fn encode(
813 self,
814 encoder: &mut fidl::encoding::Encoder<
815 '_,
816 fidl::encoding::DefaultFuchsiaResourceDialect,
817 >,
818 offset: usize,
819 _depth: fidl::encoding::Depth,
820 ) -> fidl::Result<()> {
821 encoder.debug_check_bounds::<ConnectorFdomainToolboxSocketRequest>(offset);
822 fidl::encoding::Encode::<
824 ConnectorFdomainToolboxSocketRequest,
825 fidl::encoding::DefaultFuchsiaResourceDialect,
826 >::encode(
827 (<fidl::encoding::HandleType<
828 fidl::Socket,
829 { fidl::ObjectType::SOCKET.into_raw() },
830 2147483648,
831 > as fidl::encoding::ResourceTypeMarker>::take_or_borrow(
832 &mut self.socket
833 ),),
834 encoder,
835 offset,
836 _depth,
837 )
838 }
839 }
840 unsafe impl<
841 T0: fidl::encoding::Encode<
842 fidl::encoding::HandleType<
843 fidl::Socket,
844 { fidl::ObjectType::SOCKET.into_raw() },
845 2147483648,
846 >,
847 fidl::encoding::DefaultFuchsiaResourceDialect,
848 >,
849 >
850 fidl::encoding::Encode<
851 ConnectorFdomainToolboxSocketRequest,
852 fidl::encoding::DefaultFuchsiaResourceDialect,
853 > for (T0,)
854 {
855 #[inline]
856 unsafe fn encode(
857 self,
858 encoder: &mut fidl::encoding::Encoder<
859 '_,
860 fidl::encoding::DefaultFuchsiaResourceDialect,
861 >,
862 offset: usize,
863 depth: fidl::encoding::Depth,
864 ) -> fidl::Result<()> {
865 encoder.debug_check_bounds::<ConnectorFdomainToolboxSocketRequest>(offset);
866 self.0.encode(encoder, offset + 0, depth)?;
870 Ok(())
871 }
872 }
873
874 impl fidl::encoding::Decode<Self, fidl::encoding::DefaultFuchsiaResourceDialect>
875 for ConnectorFdomainToolboxSocketRequest
876 {
877 #[inline(always)]
878 fn new_empty() -> Self {
879 Self {
880 socket: fidl::new_empty!(fidl::encoding::HandleType<fidl::Socket, { fidl::ObjectType::SOCKET.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect),
881 }
882 }
883
884 #[inline]
885 unsafe fn decode(
886 &mut self,
887 decoder: &mut fidl::encoding::Decoder<
888 '_,
889 fidl::encoding::DefaultFuchsiaResourceDialect,
890 >,
891 offset: usize,
892 _depth: fidl::encoding::Depth,
893 ) -> fidl::Result<()> {
894 decoder.debug_check_bounds::<Self>(offset);
895 fidl::decode!(fidl::encoding::HandleType<fidl::Socket, { fidl::ObjectType::SOCKET.into_raw() }, 2147483648>, fidl::encoding::DefaultFuchsiaResourceDialect, &mut self.socket, decoder, offset + 0, _depth)?;
897 Ok(())
898 }
899 }
900}