fidl_cf_sc_internal_httpclientconfig_common/
fidl_cf_sc_internal_httpclientconfig_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 stop_on_idle_timeout_millis: i64,
15}
16
17impl fidl::Persistable for Config {}
18
19mod internal {
20    use super::*;
21
22    impl fidl::encoding::ValueTypeMarker for Config {
23        type Borrowed<'a> = &'a Self;
24        fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
25            value
26        }
27    }
28
29    unsafe impl fidl::encoding::TypeMarker for Config {
30        type Owned = Self;
31
32        #[inline(always)]
33        fn inline_align(_context: fidl::encoding::Context) -> usize {
34            8
35        }
36
37        #[inline(always)]
38        fn inline_size(_context: fidl::encoding::Context) -> usize {
39            8
40        }
41        #[inline(always)]
42        fn encode_is_copy() -> bool {
43            true
44        }
45
46        #[inline(always)]
47        fn decode_is_copy() -> bool {
48            true
49        }
50    }
51
52    unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Config, D> for &Config {
53        #[inline]
54        unsafe fn encode(
55            self,
56            encoder: &mut fidl::encoding::Encoder<'_, D>,
57            offset: usize,
58            _depth: fidl::encoding::Depth,
59        ) -> fidl::Result<()> {
60            encoder.debug_check_bounds::<Config>(offset);
61            unsafe {
62                // Copy the object into the buffer.
63                let buf_ptr = encoder.buf.as_mut_ptr().add(offset);
64                (buf_ptr as *mut Config).write_unaligned((self as *const Config).read());
65                // Zero out padding regions. Unlike `fidl_struct_impl_noncopy!`, this must be
66                // done second because the memcpy will write garbage to these bytes.
67            }
68            Ok(())
69        }
70    }
71    unsafe impl<D: fidl::encoding::ResourceDialect, T0: fidl::encoding::Encode<i64, D>>
72        fidl::encoding::Encode<Config, D> for (T0,)
73    {
74        #[inline]
75        unsafe fn encode(
76            self,
77            encoder: &mut fidl::encoding::Encoder<'_, D>,
78            offset: usize,
79            depth: fidl::encoding::Depth,
80        ) -> fidl::Result<()> {
81            encoder.debug_check_bounds::<Config>(offset);
82            // Zero out padding regions. There's no need to apply masks
83            // because the unmasked parts will be overwritten by fields.
84            // Write the fields.
85            self.0.encode(encoder, offset + 0, depth)?;
86            Ok(())
87        }
88    }
89
90    impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for Config {
91        #[inline(always)]
92        fn new_empty() -> Self {
93            Self { stop_on_idle_timeout_millis: fidl::new_empty!(i64, D) }
94        }
95
96        #[inline]
97        unsafe fn decode(
98            &mut self,
99            decoder: &mut fidl::encoding::Decoder<'_, D>,
100            offset: usize,
101            _depth: fidl::encoding::Depth,
102        ) -> fidl::Result<()> {
103            decoder.debug_check_bounds::<Self>(offset);
104            let buf_ptr = unsafe { decoder.buf.as_ptr().add(offset) };
105            // Verify that padding bytes are zero.
106            // Copy from the buffer into the object.
107            unsafe {
108                std::ptr::copy_nonoverlapping(buf_ptr, self as *mut Self as *mut u8, 8);
109            }
110            Ok(())
111        }
112    }
113}