[][src]Enum r3::kernel::WaitError

#[repr(i8)]pub enum WaitError {
    Interrupted,
}

Error type for wait operations such as EventGroup::wait.

See ResultCode for all result codes and generic descriptions.

Variants

Interrupted

Trait Implementations

impl Clone for WaitError[src]

impl Copy for WaitError[src]

impl Debug for WaitError[src]

impl Eq for WaitError[src]

impl From<WaitError> for ResultCode[src]

impl From<WaitError> for WaitTimeoutError[src]

impl From<WaitError> for ParkError[src]

impl From<WaitError> for WaitEventGroupError[src]

impl From<WaitError> for WaitSemaphoreError[src]

impl From<WaitError> for LockMutexError[src]

impl Hash for WaitError[src]

impl Ord for WaitError[src]

impl PartialEq<WaitError> for WaitError[src]

impl PartialOrd<WaitError> for WaitError[src]

impl StructuralEq for WaitError[src]

impl StructuralPartialEq for WaitError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.