// automatically generated by the FlatBuffers compiler, do not modify // @generated extern crate alloc; extern crate flatbuffers; use alloc::boxed::Box; use alloc::string::{String, ToString}; use alloc::vec::Vec; use core::mem; use core::cmp::Ordering; use self::flatbuffers::{EndianScalar, Follow}; use super::*; #[deprecated(since = "2.0.0", note = "Use associated constants instead. This will no longer be generated in 2021.")] pub const ENUM_MIN_ANY_AMBIGUOUS_ALIASES: u8 = 0; #[deprecated(since = "2.0.0", note = "Use associated constants instead. This will no longer be generated in 2021.")] pub const ENUM_MAX_ANY_AMBIGUOUS_ALIASES: u8 = 3; #[deprecated(since = "2.0.0", note = "Use associated constants instead. This will no longer be generated in 2021.")] #[allow(non_camel_case_types)] pub const ENUM_VALUES_ANY_AMBIGUOUS_ALIASES: [AnyAmbiguousAliases; 4] = [ AnyAmbiguousAliases::NONE, AnyAmbiguousAliases::M1, AnyAmbiguousAliases::M2, AnyAmbiguousAliases::M3, ]; #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)] #[repr(transparent)] pub struct AnyAmbiguousAliases(pub u8); #[allow(non_upper_case_globals)] impl AnyAmbiguousAliases { pub const NONE: Self = Self(0); pub const M1: Self = Self(1); pub const M2: Self = Self(2); pub const M3: Self = Self(3); pub const ENUM_MIN: u8 = 0; pub const ENUM_MAX: u8 = 3; pub const ENUM_VALUES: &'static [Self] = &[ Self::NONE, Self::M1, Self::M2, Self::M3, ]; /// Returns the variant's name or "" if unknown. pub fn variant_name(self) -> Option<&'static str> { match self { Self::NONE => Some("NONE"), Self::M1 => Some("M1"), Self::M2 => Some("M2"), Self::M3 => Some("M3"), _ => None, } } } impl core::fmt::Debug for AnyAmbiguousAliases { fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result { if let Some(name) = self.variant_name() { f.write_str(name) } else { f.write_fmt(format_args!("", self.0)) } } } impl<'a> flatbuffers::Follow<'a> for AnyAmbiguousAliases { type Inner = Self; #[inline] unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner { let b = flatbuffers::read_scalar_at::(buf, loc); Self(b) } } impl flatbuffers::Push for AnyAmbiguousAliases { type Output = AnyAmbiguousAliases; #[inline] unsafe fn push(&self, dst: &mut [u8], _written_len: usize) { flatbuffers::emplace_scalar::(dst, self.0); } } impl flatbuffers::EndianScalar for AnyAmbiguousAliases { type Scalar = u8; #[inline] fn to_little_endian(self) -> u8 { self.0.to_le() } #[inline] #[allow(clippy::wrong_self_convention)] fn from_little_endian(v: u8) -> Self { let b = u8::from_le(v); Self(b) } } impl<'a> flatbuffers::Verifiable for AnyAmbiguousAliases { #[inline] fn run_verifier( v: &mut flatbuffers::Verifier, pos: usize ) -> Result<(), flatbuffers::InvalidFlatbuffer> { use self::flatbuffers::Verifiable; u8::run_verifier(v, pos) } } impl flatbuffers::SimpleToVerifyInSlice for AnyAmbiguousAliases {} pub struct AnyAmbiguousAliasesUnionTableOffset {} #[allow(clippy::upper_case_acronyms)] #[non_exhaustive] #[derive(Debug, Clone, PartialEq)] pub enum AnyAmbiguousAliasesT { NONE, M1(Box), M2(Box), M3(Box), } impl Default for AnyAmbiguousAliasesT { fn default() -> Self { Self::NONE } } impl AnyAmbiguousAliasesT { pub fn any_ambiguous_aliases_type(&self) -> AnyAmbiguousAliases { match self { Self::NONE => AnyAmbiguousAliases::NONE, Self::M1(_) => AnyAmbiguousAliases::M1, Self::M2(_) => AnyAmbiguousAliases::M2, Self::M3(_) => AnyAmbiguousAliases::M3, } } pub fn pack(&self, fbb: &mut flatbuffers::FlatBufferBuilder) -> Option> { match self { Self::NONE => None, Self::M1(v) => Some(v.pack(fbb).as_union_value()), Self::M2(v) => Some(v.pack(fbb).as_union_value()), Self::M3(v) => Some(v.pack(fbb).as_union_value()), } } /// If the union variant matches, return the owned MonsterT, setting the union to NONE. pub fn take_m1(&mut self) -> Option> { if let Self::M1(_) = self { let v = core::mem::replace(self, Self::NONE); if let Self::M1(w) = v { Some(w) } else { unreachable!() } } else { None } } /// If the union variant matches, return a reference to the MonsterT. pub fn as_m1(&self) -> Option<&MonsterT> { if let Self::M1(v) = self { Some(v.as_ref()) } else { None } } /// If the union variant matches, return a mutable reference to the MonsterT. pub fn as_m1_mut(&mut self) -> Option<&mut MonsterT> { if let Self::M1(v) = self { Some(v.as_mut()) } else { None } } /// If the union variant matches, return the owned MonsterT, setting the union to NONE. pub fn take_m2(&mut self) -> Option> { if let Self::M2(_) = self { let v = core::mem::replace(self, Self::NONE); if let Self::M2(w) = v { Some(w) } else { unreachable!() } } else { None } } /// If the union variant matches, return a reference to the MonsterT. pub fn as_m2(&self) -> Option<&MonsterT> { if let Self::M2(v) = self { Some(v.as_ref()) } else { None } } /// If the union variant matches, return a mutable reference to the MonsterT. pub fn as_m2_mut(&mut self) -> Option<&mut MonsterT> { if let Self::M2(v) = self { Some(v.as_mut()) } else { None } } /// If the union variant matches, return the owned MonsterT, setting the union to NONE. pub fn take_m3(&mut self) -> Option> { if let Self::M3(_) = self { let v = core::mem::replace(self, Self::NONE); if let Self::M3(w) = v { Some(w) } else { unreachable!() } } else { None } } /// If the union variant matches, return a reference to the MonsterT. pub fn as_m3(&self) -> Option<&MonsterT> { if let Self::M3(v) = self { Some(v.as_ref()) } else { None } } /// If the union variant matches, return a mutable reference to the MonsterT. pub fn as_m3_mut(&mut self) -> Option<&mut MonsterT> { if let Self::M3(v) = self { Some(v.as_mut()) } else { None } } }