[][src]Enum r3::kernel::ExitTaskError

#[repr(i8)]pub enum ExitTaskError {
    BadContext,
}

Error type for Kernel::exit_task.

See ResultCode for all result codes and generic descriptions.

Variants

BadContext

CPU Lock is active, or the current context is not a task context.

Trait Implementations

impl Clone for ExitTaskError[src]

impl Copy for ExitTaskError[src]

impl Debug for ExitTaskError[src]

impl Eq for ExitTaskError[src]

impl From<ExitTaskError> for ResultCode[src]

impl Hash for ExitTaskError[src]

impl Ord for ExitTaskError[src]

impl PartialEq<ExitTaskError> for ExitTaskError[src]

impl PartialOrd<ExitTaskError> for ExitTaskError[src]

impl StructuralEq for ExitTaskError[src]

impl StructuralPartialEq for ExitTaskError[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.