fidl_fuchsia_crashdriver_test_common/
fidl_fuchsia_crashdriver_test_common.rs

1// WARNING: This file is machine generated by fidlgen.
2
3#![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 CrasherPingResponse {
14    pub pong: u64,
15}
16
17impl fidl::Persistable for CrasherPingResponse {}
18
19mod internal {
20    use super::*;
21
22    impl fidl::encoding::ValueTypeMarker for CrasherPingResponse {
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 CrasherPingResponse {
30        type Owned = Self;
31
32        #[inline(always)]
33        fn inline_align(_context: fidl::encoding::Context) -> usize {
34            8
35        }
36
37        #[inline(always)]
38        fn inline_size(_context: fidl::encoding::Context) -> usize {
39            8
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<CrasherPingResponse, D>
53        for &CrasherPingResponse
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::<CrasherPingResponse>(offset);
63            unsafe {
64                // Copy the object into the buffer.
65                let buf_ptr = encoder.buf.as_mut_ptr().add(offset);
66                (buf_ptr as *mut CrasherPingResponse)
67                    .write_unaligned((self as *const CrasherPingResponse).read());
68                // Zero out padding regions. Unlike `fidl_struct_impl_noncopy!`, this must be
69                // done second because the memcpy will write garbage to these bytes.
70            }
71            Ok(())
72        }
73    }
74    unsafe impl<D: fidl::encoding::ResourceDialect, T0: fidl::encoding::Encode<u64, D>>
75        fidl::encoding::Encode<CrasherPingResponse, 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::<CrasherPingResponse>(offset);
85            // Zero out padding regions. There's no need to apply masks
86            // because the unmasked parts will be overwritten by fields.
87            // Write the fields.
88            self.0.encode(encoder, offset + 0, depth)?;
89            Ok(())
90        }
91    }
92
93    impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for CrasherPingResponse {
94        #[inline(always)]
95        fn new_empty() -> Self {
96            Self { pong: fidl::new_empty!(u64, 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            // Verify that padding bytes are zero.
109            // Copy from the buffer into the object.
110            unsafe {
111                std::ptr::copy_nonoverlapping(buf_ptr, self as *mut Self as *mut u8, 8);
112            }
113            Ok(())
114        }
115    }
116}