#[repr(u32)]pub enum ControllerError {
UnknownFailure = 1,
TimedOut = 2,
RemoteNotConnected = 3,
CommandNotImplemented = 4,
CommandRejected = 5,
CommandUnexpected = 6,
InvalidArguments = 7,
PacketEncoding = 8,
ProtocolError = 9,
ConnectionError = 10,
UnexpectedResponse = 11,
}
Expand description
Status codes for commands sent as the controller.
Variants§
UnknownFailure = 1
TimedOut = 2
RemoteNotConnected = 3
CommandNotImplemented = 4
CommandRejected = 5
CommandUnexpected = 6
InvalidArguments = 7
PacketEncoding = 8
ProtocolError = 9
ConnectionError = 10
UnexpectedResponse = 11
Implementations§
Source§impl ControllerError
impl ControllerError
pub fn from_primitive(prim: u32) -> Option<Self>
pub const fn into_primitive(self) -> u32
pub fn is_unknown(&self) -> bool
👎Deprecated: Strict enums should not use
is_unknown
Trait Implementations§
Source§impl Clone for ControllerError
impl Clone for ControllerError
Source§fn clone(&self) -> ControllerError
fn clone(&self) -> ControllerError
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 moreSource§impl Debug for ControllerError
impl Debug for ControllerError
Source§impl<D: ResourceDialect> Decode<ControllerError, D> for ControllerError
impl<D: ResourceDialect> Decode<ControllerError, D> for ControllerError
Source§impl<D: ResourceDialect> Encode<ControllerError, D> for ControllerError
impl<D: ResourceDialect> Encode<ControllerError, D> for ControllerError
Source§impl Hash for ControllerError
impl Hash for ControllerError
Source§impl Ord for ControllerError
impl Ord for ControllerError
Source§fn cmp(&self, other: &ControllerError) -> Ordering
fn cmp(&self, other: &ControllerError) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ControllerError
impl PartialEq for ControllerError
Source§impl PartialOrd for ControllerError
impl PartialOrd for ControllerError
Source§impl TypeMarker for ControllerError
impl TypeMarker for ControllerError
Source§type Owned = ControllerError
type Owned = ControllerError
The owned Rust type which this FIDL type decodes into.
Source§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.
Source§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
.Source§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 moreSource§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.Source§impl ValueTypeMarker for ControllerError
impl ValueTypeMarker for ControllerError
Source§type Borrowed<'a> = ControllerError
type Borrowed<'a> = ControllerError
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read moreimpl Copy for ControllerError
impl Eq for ControllerError
impl StructuralPartialEq for ControllerError
Auto Trait Implementations§
impl Freeze for ControllerError
impl RefUnwindSafe for ControllerError
impl Send for ControllerError
impl Sync for ControllerError
impl Unpin for ControllerError
impl UnwindSafe for ControllerError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)