fidl_fuchsia_driver_playground_common/
fidl_fuchsia_driver_playground_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
11pub const MAX_ARGV_ITEM_LENGTH: u64 = 4096;
12
13pub const MAX_ARGV_VECTOR_LENGTH: u64 = 256;
14
15#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
16#[repr(C)]
17pub struct CloseControllerOnTerminatedRequest {
18 pub return_code: i32,
20}
21
22impl fidl::Persistable for CloseControllerOnTerminatedRequest {}
23
24mod internal {
25 use super::*;
26
27 impl fidl::encoding::ValueTypeMarker for CloseControllerOnTerminatedRequest {
28 type Borrowed<'a> = &'a Self;
29 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
30 value
31 }
32 }
33
34 unsafe impl fidl::encoding::TypeMarker for CloseControllerOnTerminatedRequest {
35 type Owned = Self;
36
37 #[inline(always)]
38 fn inline_align(_context: fidl::encoding::Context) -> usize {
39 4
40 }
41
42 #[inline(always)]
43 fn inline_size(_context: fidl::encoding::Context) -> usize {
44 4
45 }
46 #[inline(always)]
47 fn encode_is_copy() -> bool {
48 true
49 }
50
51 #[inline(always)]
52 fn decode_is_copy() -> bool {
53 true
54 }
55 }
56
57 unsafe impl<D: fidl::encoding::ResourceDialect>
58 fidl::encoding::Encode<CloseControllerOnTerminatedRequest, D>
59 for &CloseControllerOnTerminatedRequest
60 {
61 #[inline]
62 unsafe fn encode(
63 self,
64 encoder: &mut fidl::encoding::Encoder<'_, D>,
65 offset: usize,
66 _depth: fidl::encoding::Depth,
67 ) -> fidl::Result<()> {
68 encoder.debug_check_bounds::<CloseControllerOnTerminatedRequest>(offset);
69 unsafe {
70 let buf_ptr = encoder.buf.as_mut_ptr().add(offset);
72 (buf_ptr as *mut CloseControllerOnTerminatedRequest)
73 .write_unaligned((self as *const CloseControllerOnTerminatedRequest).read());
74 }
77 Ok(())
78 }
79 }
80 unsafe impl<D: fidl::encoding::ResourceDialect, T0: fidl::encoding::Encode<i32, D>>
81 fidl::encoding::Encode<CloseControllerOnTerminatedRequest, D> for (T0,)
82 {
83 #[inline]
84 unsafe fn encode(
85 self,
86 encoder: &mut fidl::encoding::Encoder<'_, D>,
87 offset: usize,
88 depth: fidl::encoding::Depth,
89 ) -> fidl::Result<()> {
90 encoder.debug_check_bounds::<CloseControllerOnTerminatedRequest>(offset);
91 self.0.encode(encoder, offset + 0, depth)?;
95 Ok(())
96 }
97 }
98
99 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D>
100 for CloseControllerOnTerminatedRequest
101 {
102 #[inline(always)]
103 fn new_empty() -> Self {
104 Self { return_code: fidl::new_empty!(i32, D) }
105 }
106
107 #[inline]
108 unsafe fn decode(
109 &mut self,
110 decoder: &mut fidl::encoding::Decoder<'_, D>,
111 offset: usize,
112 _depth: fidl::encoding::Depth,
113 ) -> fidl::Result<()> {
114 decoder.debug_check_bounds::<Self>(offset);
115 let buf_ptr = unsafe { decoder.buf.as_ptr().add(offset) };
116 unsafe {
119 std::ptr::copy_nonoverlapping(buf_ptr, self as *mut Self as *mut u8, 4);
120 }
121 Ok(())
122 }
123 }
124}