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