fidl_cf_sc_internal_recoveryuiconfig_common/
fidl_cf_sc_internal_recoveryuiconfig_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 display_rotation: u16,
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 2
35 }
36
37 #[inline(always)]
38 fn inline_size(_context: fidl::encoding::Context) -> usize {
39 2
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 let buf_ptr = encoder.buf.as_mut_ptr().add(offset);
64 (buf_ptr as *mut Config).write_unaligned((self as *const Config).read());
65 }
68 Ok(())
69 }
70 }
71 unsafe impl<D: fidl::encoding::ResourceDialect, T0: fidl::encoding::Encode<u16, 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 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 { display_rotation: fidl::new_empty!(u16, 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 unsafe {
108 std::ptr::copy_nonoverlapping(buf_ptr, self as *mut Self as *mut u8, 2);
109 }
110 Ok(())
111 }
112 }
113}