fidl_cf_sc_internal_systemupdatecommitterconfig_common/
fidl_cf_sc_internal_systemupdatecommitterconfig_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)]
12#[repr(C)]
13pub struct Config {
14 pub commit_timeout_seconds: i64,
15 pub stop_on_idle_timeout_millis: i64,
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 16
41 }
42 #[inline(always)]
43 fn encode_is_copy() -> bool {
44 true
45 }
46
47 #[inline(always)]
48 fn decode_is_copy() -> bool {
49 true
50 }
51 }
52
53 unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Config, D> for &Config {
54 #[inline]
55 unsafe fn encode(
56 self,
57 encoder: &mut fidl::encoding::Encoder<'_, D>,
58 offset: usize,
59 _depth: fidl::encoding::Depth,
60 ) -> fidl::Result<()> {
61 encoder.debug_check_bounds::<Config>(offset);
62 unsafe {
63 let buf_ptr = encoder.buf.as_mut_ptr().add(offset);
65 (buf_ptr as *mut Config).write_unaligned((self as *const Config).read());
66 }
69 Ok(())
70 }
71 }
72 unsafe impl<
73 D: fidl::encoding::ResourceDialect,
74 T0: fidl::encoding::Encode<i64, D>,
75 T1: fidl::encoding::Encode<i64, D>,
76 > fidl::encoding::Encode<Config, D> for (T0, T1)
77 {
78 #[inline]
79 unsafe fn encode(
80 self,
81 encoder: &mut fidl::encoding::Encoder<'_, D>,
82 offset: usize,
83 depth: fidl::encoding::Depth,
84 ) -> fidl::Result<()> {
85 encoder.debug_check_bounds::<Config>(offset);
86 self.0.encode(encoder, offset + 0, depth)?;
90 self.1.encode(encoder, offset + 8, depth)?;
91 Ok(())
92 }
93 }
94
95 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for Config {
96 #[inline(always)]
97 fn new_empty() -> Self {
98 Self {
99 commit_timeout_seconds: fidl::new_empty!(i64, D),
100 stop_on_idle_timeout_millis: fidl::new_empty!(i64, D),
101 }
102 }
103
104 #[inline]
105 unsafe fn decode(
106 &mut self,
107 decoder: &mut fidl::encoding::Decoder<'_, D>,
108 offset: usize,
109 _depth: fidl::encoding::Depth,
110 ) -> fidl::Result<()> {
111 decoder.debug_check_bounds::<Self>(offset);
112 let buf_ptr = unsafe { decoder.buf.as_ptr().add(offset) };
113 unsafe {
116 std::ptr::copy_nonoverlapping(buf_ptr, self as *mut Self as *mut u8, 16);
117 }
118 Ok(())
119 }
120 }
121}