[][src]Enum r3::kernel::GetEventGroupError

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

Error type for EventGroup::get.

See ResultCode for all result codes and generic descriptions.

Variants

BadId

The event group ID is out of range.

BadContext

CPU Lock is active.

Trait Implementations

impl Clone for GetEventGroupError[src]

impl Copy for GetEventGroupError[src]

impl Debug for GetEventGroupError[src]

impl Eq for GetEventGroupError[src]

impl From<GetEventGroupError> for ResultCode[src]

impl Hash for GetEventGroupError[src]

impl Ord for GetEventGroupError[src]

impl PartialEq<GetEventGroupError> for GetEventGroupError[src]

impl PartialOrd<GetEventGroupError> for GetEventGroupError[src]

impl StructuralEq for GetEventGroupError[src]

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