fidl_cf_sc_internal_pkgresolverconfig_common/
fidl_cf_sc_internal_pkgresolverconfig_common.rs

1// WARNING: This file is machine generated by fidlgen.
2
3#![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 blob_download_concurrency_limit: u16,
15    pub blob_download_resumption_attempts_limit: u32,
16    pub blob_network_body_timeout_seconds: u32,
17    pub blob_network_header_timeout_seconds: u32,
18    pub delivery_blob_type: u32,
19    pub tuf_metadata_timeout_seconds: u32,
20}
21
22impl fidl::Persistable for Config {}
23
24mod internal {
25    use super::*;
26
27    impl fidl::encoding::ValueTypeMarker for Config {
28        type Borrowed<'a> = &'a Self;
29        fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
30            value
31        }
32    }
33
34    unsafe impl fidl::encoding::TypeMarker for Config {
35        type Owned = Self;
36
37        #[inline(always)]
38        fn inline_align(_context: fidl::encoding::Context) -> usize {
39            4
40        }
41
42        #[inline(always)]
43        fn inline_size(_context: fidl::encoding::Context) -> usize {
44            24
45        }
46    }
47
48    unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Config, D> for &Config {
49        #[inline]
50        unsafe fn encode(
51            self,
52            encoder: &mut fidl::encoding::Encoder<'_, D>,
53            offset: usize,
54            _depth: fidl::encoding::Depth,
55        ) -> fidl::Result<()> {
56            encoder.debug_check_bounds::<Config>(offset);
57            unsafe {
58                // Copy the object into the buffer.
59                let buf_ptr = encoder.buf.as_mut_ptr().add(offset);
60                (buf_ptr as *mut Config).write_unaligned((self as *const Config).read());
61                // Zero out padding regions. Unlike `fidl_struct_impl_noncopy!`, this must be
62                // done second because the memcpy will write garbage to these bytes.
63                let padding_ptr = buf_ptr.offset(0) as *mut u32;
64                let padding_mask = 0xffff0000u32;
65                padding_ptr.write_unaligned(padding_ptr.read_unaligned() & !padding_mask);
66            }
67            Ok(())
68        }
69    }
70    unsafe impl<
71            D: fidl::encoding::ResourceDialect,
72            T0: fidl::encoding::Encode<u16, D>,
73            T1: fidl::encoding::Encode<u32, D>,
74            T2: fidl::encoding::Encode<u32, D>,
75            T3: fidl::encoding::Encode<u32, D>,
76            T4: fidl::encoding::Encode<u32, D>,
77            T5: fidl::encoding::Encode<u32, D>,
78        > fidl::encoding::Encode<Config, D> for (T0, T1, T2, T3, T4, T5)
79    {
80        #[inline]
81        unsafe fn encode(
82            self,
83            encoder: &mut fidl::encoding::Encoder<'_, D>,
84            offset: usize,
85            depth: fidl::encoding::Depth,
86        ) -> fidl::Result<()> {
87            encoder.debug_check_bounds::<Config>(offset);
88            // Zero out padding regions. There's no need to apply masks
89            // because the unmasked parts will be overwritten by fields.
90            unsafe {
91                let ptr = encoder.buf.as_mut_ptr().add(offset).offset(0);
92                (ptr as *mut u32).write_unaligned(0);
93            }
94            // Write the fields.
95            self.0.encode(encoder, offset + 0, depth)?;
96            self.1.encode(encoder, offset + 4, depth)?;
97            self.2.encode(encoder, offset + 8, depth)?;
98            self.3.encode(encoder, offset + 12, depth)?;
99            self.4.encode(encoder, offset + 16, depth)?;
100            self.5.encode(encoder, offset + 20, depth)?;
101            Ok(())
102        }
103    }
104
105    impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for Config {
106        #[inline(always)]
107        fn new_empty() -> Self {
108            Self {
109                blob_download_concurrency_limit: fidl::new_empty!(u16, D),
110                blob_download_resumption_attempts_limit: fidl::new_empty!(u32, D),
111                blob_network_body_timeout_seconds: fidl::new_empty!(u32, D),
112                blob_network_header_timeout_seconds: fidl::new_empty!(u32, D),
113                delivery_blob_type: fidl::new_empty!(u32, D),
114                tuf_metadata_timeout_seconds: fidl::new_empty!(u32, D),
115            }
116        }
117
118        #[inline]
119        unsafe fn decode(
120            &mut self,
121            decoder: &mut fidl::encoding::Decoder<'_, D>,
122            offset: usize,
123            _depth: fidl::encoding::Depth,
124        ) -> fidl::Result<()> {
125            decoder.debug_check_bounds::<Self>(offset);
126            let buf_ptr = unsafe { decoder.buf.as_ptr().add(offset) };
127            // Verify that padding bytes are zero.
128            let ptr = unsafe { buf_ptr.offset(0) };
129            let padval = unsafe { (ptr as *const u32).read_unaligned() };
130            let mask = 0xffff0000u32;
131            let maskedval = padval & mask;
132            if maskedval != 0 {
133                return Err(fidl::Error::NonZeroPadding {
134                    padding_start: offset + 0 + ((mask as u64).trailing_zeros() / 8) as usize,
135                });
136            }
137            // Copy from the buffer into the object.
138            unsafe {
139                std::ptr::copy_nonoverlapping(buf_ptr, self as *mut Self as *mut u8, 24);
140            }
141            Ok(())
142        }
143    }
144}