Enum NrfxErr

Source
#[repr(u32)]
pub enum NrfxErr {
Show 13 variants Success = 195_887_104, ErrorInternal = 195_887_105, ErrorNoMem = 195_887_106, ErrorNotSupported = 195_887_107, ErrorInvalidParam = 195_887_108, ErrorInvalidState = 195_887_109, ErrorInvalidLength = 195_887_110, ErrorTimeout = 195_887_111, ErrorForbidden = 195_887_112, ErrorNull = 195_887_113, ErrorInvalidAddr = 195_887_114, ErrorBusy = 195_887_115, ErrorAlreadyInitialized = 195_887_116,
}
Expand description

IPC error type

Variants§

§

Success = 195_887_104

< Operation performed successfully.

§

ErrorInternal = 195_887_105

< Internal error.

§

ErrorNoMem = 195_887_106

< No memory for operation.

§

ErrorNotSupported = 195_887_107

< Not supported.

§

ErrorInvalidParam = 195_887_108

< Invalid parameter.

§

ErrorInvalidState = 195_887_109

< Invalid state, operation disallowed in this state.

§

ErrorInvalidLength = 195_887_110

< Invalid length.

§

ErrorTimeout = 195_887_111

< Operation timed out.

§

ErrorForbidden = 195_887_112

< Operation is forbidden.

§

ErrorNull = 195_887_113

< Null pointer.

§

ErrorInvalidAddr = 195_887_114

< Bad memory address.

§

ErrorBusy = 195_887_115

< Busy.

§

ErrorAlreadyInitialized = 195_887_116

< Module already initialized.

Trait Implementations§

Source§

impl Clone for NrfxErr

Source§

fn clone(&self) -> NrfxErr

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for NrfxErr

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for NrfxErr

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.