Enum StartResultCode
#[repr(u32)]pub enum StartResultCode {
Success = 0,
BssAlreadyStartedOrJoined = 1,
ResetRequiredBeforeStart = 2,
NotSupported = 3,
InternalError = 4,
}
Variants§
Success = 0
BssAlreadyStartedOrJoined = 1
ResetRequiredBeforeStart = 2
NotSupported = 3
InternalError = 4
Implementations§
§impl StartResultCode
impl StartResultCode
pub fn from_primitive(prim: u32) -> Option<StartResultCode>
pub const fn into_primitive(self) -> u32
pub fn is_unknown(&self) -> bool
👎Deprecated: Strict enums should not use
is_unknown
Trait Implementations§
§impl Clone for StartResultCode
impl Clone for StartResultCode
§fn clone(&self) -> StartResultCode
fn clone(&self) -> StartResultCode
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for StartResultCode
impl Debug for StartResultCode
§impl<D> Decode<StartResultCode, D> for StartResultCodewhere
D: ResourceDialect,
impl<D> Decode<StartResultCode, D> for StartResultCodewhere
D: ResourceDialect,
§fn new_empty() -> StartResultCode
fn new_empty() -> StartResultCode
Creates a valid instance of
Self
. The specific value does not matter,
since it will be overwritten by decode
.§impl<D> Encode<StartResultCode, D> for StartResultCodewhere
D: ResourceDialect,
impl<D> Encode<StartResultCode, D> for StartResultCodewhere
D: ResourceDialect,
§impl Hash for StartResultCode
impl Hash for StartResultCode
§impl Ord for StartResultCode
impl Ord for StartResultCode
§impl PartialEq for StartResultCode
impl PartialEq for StartResultCode
§impl PartialOrd for StartResultCode
impl PartialOrd for StartResultCode
§impl TypeMarker for StartResultCode
impl TypeMarker for StartResultCode
§type Owned = StartResultCode
type Owned = StartResultCode
The owned Rust type which this FIDL type decodes into.
§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 StartResultCode
impl ValueTypeMarker for StartResultCode
§type Borrowed<'a> = StartResultCode
type Borrowed<'a> = StartResultCode
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: &<StartResultCode as TypeMarker>::Owned,
) -> <StartResultCode as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<StartResultCode as TypeMarker>::Owned, ) -> <StartResultCode as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Copy for StartResultCode
impl Eq for StartResultCode
impl StructuralPartialEq for StartResultCode
Auto Trait Implementations§
impl Freeze for StartResultCode
impl RefUnwindSafe for StartResultCode
impl Send for StartResultCode
impl Sync for StartResultCode
impl Unpin for StartResultCode
impl UnwindSafe for StartResultCode
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