fidl_fuchsia_time_test_common/
fidl_fuchsia_time_test_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(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
13pub enum Error {
14 Internal,
19 #[doc(hidden)]
20 __SourceBreaking { unknown_ordinal: i32 },
21}
22
23#[macro_export]
25macro_rules! ErrorUnknown {
26 () => {
27 _
28 };
29}
30
31impl Error {
32 #[inline]
33 pub fn from_primitive(prim: i32) -> Option<Self> {
34 match prim {
35 1 => Some(Self::Internal),
36 _ => None,
37 }
38 }
39
40 #[inline]
41 pub fn from_primitive_allow_unknown(prim: i32) -> Self {
42 match prim {
43 1 => Self::Internal,
44 unknown_ordinal => Self::__SourceBreaking { unknown_ordinal },
45 }
46 }
47
48 #[inline]
49 pub fn unknown() -> Self {
50 Self::__SourceBreaking { unknown_ordinal: 0x7fffffff }
51 }
52
53 #[inline]
54 pub const fn into_primitive(self) -> i32 {
55 match self {
56 Self::Internal => 1,
57 Self::__SourceBreaking { unknown_ordinal } => unknown_ordinal,
58 }
59 }
60
61 #[inline]
62 pub fn is_unknown(&self) -> bool {
63 match self {
64 Self::__SourceBreaking { unknown_ordinal: _ } => true,
65 _ => false,
66 }
67 }
68}
69
70mod internal {
71 use super::*;
72 unsafe impl fidl::encoding::TypeMarker for Error {
73 type Owned = Self;
74
75 #[inline(always)]
76 fn inline_align(_context: fidl::encoding::Context) -> usize {
77 std::mem::align_of::<i32>()
78 }
79
80 #[inline(always)]
81 fn inline_size(_context: fidl::encoding::Context) -> usize {
82 std::mem::size_of::<i32>()
83 }
84
85 #[inline(always)]
86 fn encode_is_copy() -> bool {
87 false
88 }
89
90 #[inline(always)]
91 fn decode_is_copy() -> bool {
92 false
93 }
94 }
95
96 impl fidl::encoding::ValueTypeMarker for Error {
97 type Borrowed<'a> = Self;
98 #[inline(always)]
99 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
100 *value
101 }
102 }
103
104 unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Self, D> for Error {
105 #[inline]
106 unsafe fn encode(
107 self,
108 encoder: &mut fidl::encoding::Encoder<'_, D>,
109 offset: usize,
110 _depth: fidl::encoding::Depth,
111 ) -> fidl::Result<()> {
112 encoder.debug_check_bounds::<Self>(offset);
113 encoder.write_num(self.into_primitive(), offset);
114 Ok(())
115 }
116 }
117
118 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for Error {
119 #[inline(always)]
120 fn new_empty() -> Self {
121 Self::unknown()
122 }
123
124 #[inline]
125 unsafe fn decode(
126 &mut self,
127 decoder: &mut fidl::encoding::Decoder<'_, D>,
128 offset: usize,
129 _depth: fidl::encoding::Depth,
130 ) -> fidl::Result<()> {
131 decoder.debug_check_bounds::<Self>(offset);
132 let prim = decoder.read_num::<i32>(offset);
133
134 *self = Self::from_primitive_allow_unknown(prim);
135 Ok(())
136 }
137 }
138}