fidl_fuchsia_elf_test_common/
fidl_fuchsia_elf_test_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_ENV_VARS: i32 = 32;
12
13pub const MAX_VAR_LEN: i32 = 132;
14
15#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
16pub struct ContextGetEnvironResponse {
17 pub environ: Vec<String>,
18}
19
20impl fidl::Persistable for ContextGetEnvironResponse {}
21
22mod internal {
23 use super::*;
24
25 impl fidl::encoding::ValueTypeMarker for ContextGetEnvironResponse {
26 type Borrowed<'a> = &'a Self;
27 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
28 value
29 }
30 }
31
32 unsafe impl fidl::encoding::TypeMarker for ContextGetEnvironResponse {
33 type Owned = Self;
34
35 #[inline(always)]
36 fn inline_align(_context: fidl::encoding::Context) -> usize {
37 8
38 }
39
40 #[inline(always)]
41 fn inline_size(_context: fidl::encoding::Context) -> usize {
42 16
43 }
44 }
45
46 unsafe impl<D: fidl::encoding::ResourceDialect>
47 fidl::encoding::Encode<ContextGetEnvironResponse, D> for &ContextGetEnvironResponse
48 {
49 #[inline]
50 unsafe fn encode(
51 self,
52 encoder: &mut fidl::encoding::Encoder<'_, D>,
53 offset: usize,
54 _depth: fidl::encoding::Depth,
55 ) -> fidl::Result<()> {
56 encoder.debug_check_bounds::<ContextGetEnvironResponse>(offset);
57 fidl::encoding::Encode::<ContextGetEnvironResponse, D>::encode(
59 (
60 <fidl::encoding::Vector<fidl::encoding::BoundedString<132>, 32> as fidl::encoding::ValueTypeMarker>::borrow(&self.environ),
61 ),
62 encoder, offset, _depth
63 )
64 }
65 }
66 unsafe impl<
67 D: fidl::encoding::ResourceDialect,
68 T0: fidl::encoding::Encode<
69 fidl::encoding::Vector<fidl::encoding::BoundedString<132>, 32>,
70 D,
71 >,
72 > fidl::encoding::Encode<ContextGetEnvironResponse, D> for (T0,)
73 {
74 #[inline]
75 unsafe fn encode(
76 self,
77 encoder: &mut fidl::encoding::Encoder<'_, D>,
78 offset: usize,
79 depth: fidl::encoding::Depth,
80 ) -> fidl::Result<()> {
81 encoder.debug_check_bounds::<ContextGetEnvironResponse>(offset);
82 self.0.encode(encoder, offset + 0, depth)?;
86 Ok(())
87 }
88 }
89
90 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D>
91 for ContextGetEnvironResponse
92 {
93 #[inline(always)]
94 fn new_empty() -> Self {
95 Self {
96 environ: fidl::new_empty!(
97 fidl::encoding::Vector<fidl::encoding::BoundedString<132>, 32>,
98 D
99 ),
100 }
101 }
102
103 #[inline]
104 unsafe fn decode(
105 &mut self,
106 decoder: &mut fidl::encoding::Decoder<'_, D>,
107 offset: usize,
108 _depth: fidl::encoding::Depth,
109 ) -> fidl::Result<()> {
110 decoder.debug_check_bounds::<Self>(offset);
111 fidl::decode!(
113 fidl::encoding::Vector<fidl::encoding::BoundedString<132>, 32>,
114 D,
115 &mut self.environ,
116 decoder,
117 offset + 0,
118 _depth
119 )?;
120 Ok(())
121 }
122 }
123}