fidl_fuchsia_settings_storage_common/
fidl_fuchsia_settings_storage_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, PartialEq)]
12pub struct LightGroups {
13 pub groups: Vec<fidl_fuchsia_settings::LightGroup>,
14}
15
16impl fidl::Persistable for LightGroups {}
17
18mod internal {
19 use super::*;
20
21 impl fidl::encoding::ValueTypeMarker for LightGroups {
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 LightGroups {
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<LightGroups, D>
43 for &LightGroups
44 {
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::<LightGroups>(offset);
53 fidl::encoding::Encode::<LightGroups, D>::encode(
55 (
56 <fidl::encoding::UnboundedVector<fidl_fuchsia_settings::LightGroup> as fidl::encoding::ValueTypeMarker>::borrow(&self.groups),
57 ),
58 encoder, offset, _depth
59 )
60 }
61 }
62 unsafe impl<
63 D: fidl::encoding::ResourceDialect,
64 T0: fidl::encoding::Encode<
65 fidl::encoding::UnboundedVector<fidl_fuchsia_settings::LightGroup>,
66 D,
67 >,
68 > fidl::encoding::Encode<LightGroups, D> for (T0,)
69 {
70 #[inline]
71 unsafe fn encode(
72 self,
73 encoder: &mut fidl::encoding::Encoder<'_, D>,
74 offset: usize,
75 depth: fidl::encoding::Depth,
76 ) -> fidl::Result<()> {
77 encoder.debug_check_bounds::<LightGroups>(offset);
78 self.0.encode(encoder, offset + 0, depth)?;
82 Ok(())
83 }
84 }
85
86 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for LightGroups {
87 #[inline(always)]
88 fn new_empty() -> Self {
89 Self {
90 groups: fidl::new_empty!(
91 fidl::encoding::UnboundedVector<fidl_fuchsia_settings::LightGroup>,
92 D
93 ),
94 }
95 }
96
97 #[inline]
98 unsafe fn decode(
99 &mut self,
100 decoder: &mut fidl::encoding::Decoder<'_, D>,
101 offset: usize,
102 _depth: fidl::encoding::Depth,
103 ) -> fidl::Result<()> {
104 decoder.debug_check_bounds::<Self>(offset);
105 fidl::decode!(
107 fidl::encoding::UnboundedVector<fidl_fuchsia_settings::LightGroup>,
108 D,
109 &mut self.groups,
110 decoder,
111 offset + 0,
112 _depth
113 )?;
114 Ok(())
115 }
116 }
117}