#[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§
Auto Trait Implementations§
impl Freeze for NrfxErr
impl RefUnwindSafe for NrfxErr
impl Send for NrfxErr
impl Sync for NrfxErr
impl Unpin for NrfxErr
impl UnwindSafe for NrfxErr
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