fidl_cf_sc_internal_triagedetectconfig_common/
fidl_cf_sc_internal_triagedetectconfig_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, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
12pub struct Config {
13    pub check_every: String,
14    pub test_only: bool,
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            24
40        }
41    }
42
43    unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Config, D> for &Config {
44        #[inline]
45        unsafe fn encode(
46            self,
47            encoder: &mut fidl::encoding::Encoder<'_, D>,
48            offset: usize,
49            _depth: fidl::encoding::Depth,
50        ) -> fidl::Result<()> {
51            encoder.debug_check_bounds::<Config>(offset);
52            // Delegate to tuple encoding.
53            fidl::encoding::Encode::<Config, D>::encode(
54                (
55                    <fidl::encoding::BoundedString<100> as fidl::encoding::ValueTypeMarker>::borrow(
56                        &self.check_every,
57                    ),
58                    <bool as fidl::encoding::ValueTypeMarker>::borrow(&self.test_only),
59                ),
60                encoder,
61                offset,
62                _depth,
63            )
64        }
65    }
66    unsafe impl<
67            D: fidl::encoding::ResourceDialect,
68            T0: fidl::encoding::Encode<fidl::encoding::BoundedString<100>, D>,
69            T1: fidl::encoding::Encode<bool, D>,
70        > fidl::encoding::Encode<Config, D> for (T0, T1)
71    {
72        #[inline]
73        unsafe fn encode(
74            self,
75            encoder: &mut fidl::encoding::Encoder<'_, D>,
76            offset: usize,
77            depth: fidl::encoding::Depth,
78        ) -> fidl::Result<()> {
79            encoder.debug_check_bounds::<Config>(offset);
80            // Zero out padding regions. There's no need to apply masks
81            // because the unmasked parts will be overwritten by fields.
82            unsafe {
83                let ptr = encoder.buf.as_mut_ptr().add(offset).offset(16);
84                (ptr as *mut u64).write_unaligned(0);
85            }
86            // Write the fields.
87            self.0.encode(encoder, offset + 0, depth)?;
88            self.1.encode(encoder, offset + 16, depth)?;
89            Ok(())
90        }
91    }
92
93    impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for Config {
94        #[inline(always)]
95        fn new_empty() -> Self {
96            Self {
97                check_every: fidl::new_empty!(fidl::encoding::BoundedString<100>, D),
98                test_only: fidl::new_empty!(bool, D),
99            }
100        }
101
102        #[inline]
103        unsafe fn decode(
104            &mut self,
105            decoder: &mut fidl::encoding::Decoder<'_, D>,
106            offset: usize,
107            _depth: fidl::encoding::Depth,
108        ) -> fidl::Result<()> {
109            decoder.debug_check_bounds::<Self>(offset);
110            // Verify that padding bytes are zero.
111            let ptr = unsafe { decoder.buf.as_ptr().add(offset).offset(16) };
112            let padval = unsafe { (ptr as *const u64).read_unaligned() };
113            let mask = 0xffffffffffffff00u64;
114            let maskedval = padval & mask;
115            if maskedval != 0 {
116                return Err(fidl::Error::NonZeroPadding {
117                    padding_start: offset + 16 + ((mask as u64).trailing_zeros() / 8) as usize,
118                });
119            }
120            fidl::decode!(
121                fidl::encoding::BoundedString<100>,
122                D,
123                &mut self.check_every,
124                decoder,
125                offset + 0,
126                _depth
127            )?;
128            fidl::decode!(bool, D, &mut self.test_only, decoder, offset + 16, _depth)?;
129            Ok(())
130        }
131    }
132}