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