Enum U32Enum
#[repr(u32)]pub enum U32Enum {
KOne = 1,
KTwo = 2,
KThree = 3,
KFour = 4,
KFive = 5,
KSix = 6,
KSeven = 7,
}
Variants§
Implementations§
§impl U32Enum
impl U32Enum
pub fn from_primitive(prim: u32) -> Option<U32Enum>
pub const fn into_primitive(self) -> u32
pub fn is_unknown(&self) -> bool
👎Deprecated: Strict enums should not use
is_unknown
Trait Implementations§
§impl<D> Decode<U32Enum, D> for U32Enumwhere
D: ResourceDialect,
impl<D> Decode<U32Enum, D> for U32Enumwhere
D: ResourceDialect,
§impl<D> Encode<U32Enum, D> for U32Enumwhere
D: ResourceDialect,
impl<D> Encode<U32Enum, D> for U32Enumwhere
D: ResourceDialect,
§impl Ord for U32Enum
impl Ord for U32Enum
§impl PartialOrd for U32Enum
impl PartialOrd for U32Enum
§impl TypeMarker for U32Enum
impl TypeMarker for U32Enum
§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.§impl ValueTypeMarker for U32Enum
impl ValueTypeMarker for U32Enum
§type Borrowed<'a> = U32Enum
type Borrowed<'a> = U32Enum
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read more§fn borrow(
value: &<U32Enum as TypeMarker>::Owned,
) -> <U32Enum as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<U32Enum as TypeMarker>::Owned, ) -> <U32Enum as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Copy for U32Enum
impl Eq for U32Enum
impl StructuralPartialEq for U32Enum
Auto Trait Implementations§
impl Freeze for U32Enum
impl RefUnwindSafe for U32Enum
impl Send for U32Enum
impl Sync for U32Enum
impl Unpin for U32Enum
impl UnwindSafe for U32Enum
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more