#[repr(i8)]
pub enum WaitError {
    Interrupted,
}Expand description
Error type for wait operations such as EventGroup::wait.
See ResultCode for all result codes and generic descriptions.
Variants§
Interrupted
Trait Implementations§
source§impl From<WaitError> for LockMutexError
 
impl From<WaitError> for LockMutexError
source§impl From<WaitError> for ResultCode
 
impl From<WaitError> for ResultCode
source§impl From<WaitError> for WaitEventGroupError
 
impl From<WaitError> for WaitEventGroupError
source§impl From<WaitError> for WaitSemaphoreError
 
impl From<WaitError> for WaitSemaphoreError
source§impl From<WaitError> for WaitTimeoutError
 
impl From<WaitError> for WaitTimeoutError
source§impl Ord for WaitError
 
impl Ord for WaitError
source§impl PartialEq<WaitError> for WaitError
 
impl PartialEq<WaitError> for WaitError
source§impl PartialOrd<WaitError> for WaitError
 
impl PartialOrd<WaitError> for WaitError
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read more