fidl_cf_sc_internal_hwinfostructuredconfig_common/
fidl_cf_sc_internal_hwinfostructuredconfig_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 product_manufacturer: String,
14 pub product_model: String,
15 pub product_name: String,
16}
17
18impl fidl::Persistable for Config {}
19
20mod internal {
21 use super::*;
22
23 impl fidl::encoding::ValueTypeMarker for Config {
24 type Borrowed<'a> = &'a Self;
25 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
26 value
27 }
28 }
29
30 unsafe impl fidl::encoding::TypeMarker for Config {
31 type Owned = Self;
32
33 #[inline(always)]
34 fn inline_align(_context: fidl::encoding::Context) -> usize {
35 8
36 }
37
38 #[inline(always)]
39 fn inline_size(_context: fidl::encoding::Context) -> usize {
40 48
41 }
42 }
43
44 unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Config, D> for &Config {
45 #[inline]
46 unsafe fn encode(
47 self,
48 encoder: &mut fidl::encoding::Encoder<'_, D>,
49 offset: usize,
50 _depth: fidl::encoding::Depth,
51 ) -> fidl::Result<()> {
52 encoder.debug_check_bounds::<Config>(offset);
53 fidl::encoding::Encode::<Config, D>::encode(
55 (
56 <fidl::encoding::BoundedString<40> as fidl::encoding::ValueTypeMarker>::borrow(
57 &self.product_manufacturer,
58 ),
59 <fidl::encoding::BoundedString<40> as fidl::encoding::ValueTypeMarker>::borrow(
60 &self.product_model,
61 ),
62 <fidl::encoding::BoundedString<40> as fidl::encoding::ValueTypeMarker>::borrow(
63 &self.product_name,
64 ),
65 ),
66 encoder,
67 offset,
68 _depth,
69 )
70 }
71 }
72 unsafe impl<
73 D: fidl::encoding::ResourceDialect,
74 T0: fidl::encoding::Encode<fidl::encoding::BoundedString<40>, D>,
75 T1: fidl::encoding::Encode<fidl::encoding::BoundedString<40>, D>,
76 T2: fidl::encoding::Encode<fidl::encoding::BoundedString<40>, D>,
77 > fidl::encoding::Encode<Config, D> for (T0, T1, T2)
78 {
79 #[inline]
80 unsafe fn encode(
81 self,
82 encoder: &mut fidl::encoding::Encoder<'_, D>,
83 offset: usize,
84 depth: fidl::encoding::Depth,
85 ) -> fidl::Result<()> {
86 encoder.debug_check_bounds::<Config>(offset);
87 self.0.encode(encoder, offset + 0, depth)?;
91 self.1.encode(encoder, offset + 16, depth)?;
92 self.2.encode(encoder, offset + 32, depth)?;
93 Ok(())
94 }
95 }
96
97 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for Config {
98 #[inline(always)]
99 fn new_empty() -> Self {
100 Self {
101 product_manufacturer: fidl::new_empty!(fidl::encoding::BoundedString<40>, D),
102 product_model: fidl::new_empty!(fidl::encoding::BoundedString<40>, D),
103 product_name: fidl::new_empty!(fidl::encoding::BoundedString<40>, D),
104 }
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 fidl::decode!(
117 fidl::encoding::BoundedString<40>,
118 D,
119 &mut self.product_manufacturer,
120 decoder,
121 offset + 0,
122 _depth
123 )?;
124 fidl::decode!(
125 fidl::encoding::BoundedString<40>,
126 D,
127 &mut self.product_model,
128 decoder,
129 offset + 16,
130 _depth
131 )?;
132 fidl::decode!(
133 fidl::encoding::BoundedString<40>,
134 D,
135 &mut self.product_name,
136 decoder,
137 offset + 32,
138 _depth
139 )?;
140 Ok(())
141 }
142 }
143}