fidl_cf_sc_internal_pkgdirconfig_common/
fidl_cf_sc_internal_pkgdirconfig_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, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
12pub struct Config {
13 pub use_fxblob: bool,
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 1
34 }
35
36 #[inline(always)]
37 fn inline_size(_context: fidl::encoding::Context) -> usize {
38 1
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 (<bool as fidl::encoding::ValueTypeMarker>::borrow(&self.use_fxblob),),
54 encoder,
55 offset,
56 _depth,
57 )
58 }
59 }
60 unsafe impl<D: fidl::encoding::ResourceDialect, T0: fidl::encoding::Encode<bool, D>>
61 fidl::encoding::Encode<Config, D> for (T0,)
62 {
63 #[inline]
64 unsafe fn encode(
65 self,
66 encoder: &mut fidl::encoding::Encoder<'_, D>,
67 offset: usize,
68 depth: fidl::encoding::Depth,
69 ) -> fidl::Result<()> {
70 encoder.debug_check_bounds::<Config>(offset);
71 self.0.encode(encoder, offset + 0, depth)?;
75 Ok(())
76 }
77 }
78
79 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for Config {
80 #[inline(always)]
81 fn new_empty() -> Self {
82 Self { use_fxblob: fidl::new_empty!(bool, D) }
83 }
84
85 #[inline]
86 unsafe fn decode(
87 &mut self,
88 decoder: &mut fidl::encoding::Decoder<'_, D>,
89 offset: usize,
90 _depth: fidl::encoding::Depth,
91 ) -> fidl::Result<()> {
92 decoder.debug_check_bounds::<Self>(offset);
93 fidl::decode!(bool, D, &mut self.use_fxblob, decoder, offset + 0, _depth)?;
95 Ok(())
96 }
97 }
98}