fidl_fuchsia_space_common/
fidl_fuchsia_space_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)]
12#[repr(u32)]
13pub enum ErrorCode {
14 Internal = 1,
15 PendingCommit = 2,
20}
21
22impl ErrorCode {
23 #[inline]
24 pub fn from_primitive(prim: u32) -> Option<Self> {
25 match prim {
26 1 => Some(Self::Internal),
27 2 => Some(Self::PendingCommit),
28 _ => None,
29 }
30 }
31
32 #[inline]
33 pub const fn into_primitive(self) -> u32 {
34 self as u32
35 }
36
37 #[deprecated = "Strict enums should not use `is_unknown`"]
38 #[inline]
39 pub fn is_unknown(&self) -> bool {
40 false
41 }
42}
43
44mod internal {
45 use super::*;
46 unsafe impl fidl::encoding::TypeMarker for ErrorCode {
47 type Owned = Self;
48
49 #[inline(always)]
50 fn inline_align(_context: fidl::encoding::Context) -> usize {
51 std::mem::align_of::<u32>()
52 }
53
54 #[inline(always)]
55 fn inline_size(_context: fidl::encoding::Context) -> usize {
56 std::mem::size_of::<u32>()
57 }
58
59 #[inline(always)]
60 fn encode_is_copy() -> bool {
61 true
62 }
63
64 #[inline(always)]
65 fn decode_is_copy() -> bool {
66 false
67 }
68 }
69
70 impl fidl::encoding::ValueTypeMarker for ErrorCode {
71 type Borrowed<'a> = Self;
72 #[inline(always)]
73 fn borrow(value: &<Self as fidl::encoding::TypeMarker>::Owned) -> Self::Borrowed<'_> {
74 *value
75 }
76 }
77
78 unsafe impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Encode<Self, D> for ErrorCode {
79 #[inline]
80 unsafe fn encode(
81 self,
82 encoder: &mut fidl::encoding::Encoder<'_, D>,
83 offset: usize,
84 _depth: fidl::encoding::Depth,
85 ) -> fidl::Result<()> {
86 encoder.debug_check_bounds::<Self>(offset);
87 encoder.write_num(self.into_primitive(), offset);
88 Ok(())
89 }
90 }
91
92 impl<D: fidl::encoding::ResourceDialect> fidl::encoding::Decode<Self, D> for ErrorCode {
93 #[inline(always)]
94 fn new_empty() -> Self {
95 Self::Internal
96 }
97
98 #[inline]
99 unsafe fn decode(
100 &mut self,
101 decoder: &mut fidl::encoding::Decoder<'_, D>,
102 offset: usize,
103 _depth: fidl::encoding::Depth,
104 ) -> fidl::Result<()> {
105 decoder.debug_check_bounds::<Self>(offset);
106 let prim = decoder.read_num::<u32>(offset);
107
108 *self = Self::from_primitive(prim).ok_or(fidl::Error::InvalidEnumValue)?;
109 Ok(())
110 }
111 }
112}