fidl_fuchsia_testing_proxy_common/
fidl_fuchsia_testing_proxy_common.rs1#![warn(clippy::all)]
4#![allow(unused_parens, unused_mut, unused_imports, nonstandard_style)]
5
6use bitflags::bitflags;
7use fidl::encoding::{MessageBufFor, ProxyChannelBox, ResourceDialect};
8use futures::future::{self, MaybeDone, TryFutureExt};
9use zx_status;
10
11#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
12#[repr(C)]
13pub struct TcpProxyControlOpenProxyResponse {
14 pub open_port: u16,
15}
16
17impl fidl::Persistable for TcpProxyControlOpenProxyResponse {}
18
19mod internal {
20 use super::*;
21
22 impl fidl::encoding::ValueTypeMarker for TcpProxyControlOpenProxyResponse {
23 type Borrowed<'a> = &'a Self;
24 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
25 value
26 }
27 }
28
29 unsafe impl fidl::encoding::TypeMarker for TcpProxyControlOpenProxyResponse {
30 type Owned = Self;
31
32 #[inline(always)]
33 fn inline_align(_context: fidl::encoding::Context) -> usize {
34 2
35 }
36
37 #[inline(always)]
38 fn inline_size(_context: fidl::encoding::Context) -> usize {
39 2
40 }
41 #[inline(always)]
42 fn encode_is_copy() -> bool {
43 true
44 }
45
46 #[inline(always)]
47 fn decode_is_copy() -> bool {
48 true
49 }
50 }
51
52 unsafe impl<D: fidl::encoding::ResourceDialect>
53 fidl::encoding::Encode<TcpProxyControlOpenProxyResponse, D>
54 for &TcpProxyControlOpenProxyResponse
55 {
56 #[inline]
57 unsafe fn encode(
58 self,
59 encoder: &mut fidl::encoding::Encoder<'_, D>,
60 offset: usize,
61 _depth: fidl::encoding::Depth,
62 ) -> fidl::Result<()> {
63 encoder.debug_check_bounds::<TcpProxyControlOpenProxyResponse>(offset);
64 unsafe {
65 let buf_ptr = encoder.buf.as_mut_ptr().add(offset);
67 (buf_ptr as *mut TcpProxyControlOpenProxyResponse)
68 .write_unaligned((self as *const TcpProxyControlOpenProxyResponse).read());
69 }
72 Ok(())
73 }
74 }
75 unsafe impl<D: fidl::encoding::ResourceDialect, T0: fidl::encoding::Encode<u16, D>>
76 fidl::encoding::Encode<TcpProxyControlOpenProxyResponse, D> for (T0,)
77 {
78 #[inline]
79 unsafe fn encode(
80 self,
81 encoder: &mut fidl::encoding::Encoder<'_, D>,
82 offset: usize,
83 depth: fidl::encoding::Depth,
84 ) -> fidl::Result<()> {
85 encoder.debug_check_bounds::<TcpProxyControlOpenProxyResponse>(offset);
86 self.0.encode(encoder, offset + 0, depth)?;
90 Ok(())
91 }
92 }
93
94 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D>
95 for TcpProxyControlOpenProxyResponse
96 {
97 #[inline(always)]
98 fn new_empty() -> Self {
99 Self { open_port: fidl::new_empty!(u16, D) }
100 }
101
102 #[inline]
103 unsafe fn decode(
104 &mut self,
105 decoder: &mut fidl::encoding::Decoder<'_, D>,
106 offset: usize,
107 _depth: fidl::encoding::Depth,
108 ) -> fidl::Result<()> {
109 decoder.debug_check_bounds::<Self>(offset);
110 let buf_ptr = unsafe { decoder.buf.as_ptr().add(offset) };
111 unsafe {
114 std::ptr::copy_nonoverlapping(buf_ptr, self as *mut Self as *mut u8, 2);
115 }
116 Ok(())
117 }
118 }
119}