[][src]Enum r3::kernel::QueryInterruptLineError

#[repr(i8)]pub enum QueryInterruptLineError {
    NotSupported,
    BadParam,
}

Error type for InterruptLine::is_pending.

See ResultCode for all result codes and generic descriptions.

Variants

NotSupported

Reading a pending flag is not supported by the port.

BadParam

Reading the pending flag of the specified interrupt line is not supported.

Trait Implementations

impl Clone for QueryInterruptLineError[src]

impl Copy for QueryInterruptLineError[src]

impl Debug for QueryInterruptLineError[src]

impl Eq for QueryInterruptLineError[src]

impl From<QueryInterruptLineError> for ResultCode[src]

impl Hash for QueryInterruptLineError[src]

impl Ord for QueryInterruptLineError[src]

impl PartialEq<QueryInterruptLineError> for QueryInterruptLineError[src]

impl PartialOrd<QueryInterruptLineError> for QueryInterruptLineError[src]

impl StructuralEq for QueryInterruptLineError[src]

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