fidl_cf_sc_internal_vmmlauncherconfig_common/
fidl_cf_sc_internal_vmmlauncherconfig_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 vmm_component_url: 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 (<fidl::encoding::BoundedString<512> as fidl::encoding::ValueTypeMarker>::borrow(
54 &self.vmm_component_url,
55 ),),
56 encoder,
57 offset,
58 _depth,
59 )
60 }
61 }
62 unsafe impl<
63 D: fidl::encoding::ResourceDialect,
64 T0: fidl::encoding::Encode<fidl::encoding::BoundedString<512>, D>,
65 > fidl::encoding::Encode<Config, D> for (T0,)
66 {
67 #[inline]
68 unsafe fn encode(
69 self,
70 encoder: &mut fidl::encoding::Encoder<'_, D>,
71 offset: usize,
72 depth: fidl::encoding::Depth,
73 ) -> fidl::Result<()> {
74 encoder.debug_check_bounds::<Config>(offset);
75 self.0.encode(encoder, offset + 0, depth)?;
79 Ok(())
80 }
81 }
82
83 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for Config {
84 #[inline(always)]
85 fn new_empty() -> Self {
86 Self { vmm_component_url: fidl::new_empty!(fidl::encoding::BoundedString<512>, D) }
87 }
88
89 #[inline]
90 unsafe fn decode(
91 &mut self,
92 decoder: &mut fidl::encoding::Decoder<'_, D>,
93 offset: usize,
94 _depth: fidl::encoding::Depth,
95 ) -> fidl::Result<()> {
96 decoder.debug_check_bounds::<Self>(offset);
97 fidl::decode!(
99 fidl::encoding::BoundedString<512>,
100 D,
101 &mut self.vmm_component_url,
102 decoder,
103 offset + 0,
104 _depth
105 )?;
106 Ok(())
107 }
108 }
109}