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