fidl_test_fidl_connector_common/
fidl_test_fidl_connector_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 TestPingResponse {
14 pub gen: u32,
15}
16
17impl fidl::Persistable for TestPingResponse {}
18
19mod internal {
20 use super::*;
21
22 impl fidl::encoding::ValueTypeMarker for TestPingResponse {
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 TestPingResponse {
30 type Owned = Self;
31
32 #[inline(always)]
33 fn inline_align(_context: fidl::encoding::Context) -> usize {
34 4
35 }
36
37 #[inline(always)]
38 fn inline_size(_context: fidl::encoding::Context) -> usize {
39 4
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> fidl::encoding::Encode<TestPingResponse, D>
53 for &TestPingResponse
54 {
55 #[inline]
56 unsafe fn encode(
57 self,
58 encoder: &mut fidl::encoding::Encoder<'_, D>,
59 offset: usize,
60 _depth: fidl::encoding::Depth,
61 ) -> fidl::Result<()> {
62 encoder.debug_check_bounds::<TestPingResponse>(offset);
63 unsafe {
64 let buf_ptr = encoder.buf.as_mut_ptr().add(offset);
66 (buf_ptr as *mut TestPingResponse)
67 .write_unaligned((self as *const TestPingResponse).read());
68 }
71 Ok(())
72 }
73 }
74 unsafe impl<D: fidl::encoding::ResourceDialect, T0: fidl::encoding::Encode<u32, D>>
75 fidl::encoding::Encode<TestPingResponse, D> for (T0,)
76 {
77 #[inline]
78 unsafe fn encode(
79 self,
80 encoder: &mut fidl::encoding::Encoder<'_, D>,
81 offset: usize,
82 depth: fidl::encoding::Depth,
83 ) -> fidl::Result<()> {
84 encoder.debug_check_bounds::<TestPingResponse>(offset);
85 self.0.encode(encoder, offset + 0, depth)?;
89 Ok(())
90 }
91 }
92
93 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for TestPingResponse {
94 #[inline(always)]
95 fn new_empty() -> Self {
96 Self { gen: fidl::new_empty!(u32, D) }
97 }
98
99 #[inline]
100 unsafe fn decode(
101 &mut self,
102 decoder: &mut fidl::encoding::Decoder<'_, D>,
103 offset: usize,
104 _depth: fidl::encoding::Depth,
105 ) -> fidl::Result<()> {
106 decoder.debug_check_bounds::<Self>(offset);
107 let buf_ptr = unsafe { decoder.buf.as_ptr().add(offset) };
108 unsafe {
111 std::ptr::copy_nonoverlapping(buf_ptr, self as *mut Self as *mut u8, 4);
112 }
113 Ok(())
114 }
115 }
116}