pub enum Status {
Ezsp(Result<Status, u8>),
Ember(Result<Status, u8>),
Sl(Result<Status, u32>),
}Expand description
A status indicating an error was received from the NCP.
Variants§
Ezsp(Result<Status, u8>)
The received ezsp::Status indicates an error.
Ember(Result<Status, u8>)
The received ember::Status indicates an error.
Sl(Result<Status, u32>)
The received silizium::Status indicates an error.
Trait Implementations§
Source§impl Error for Status
impl Error for Status
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnsafeUnpin for Status
impl UnwindSafe for Status
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