Enum r3_core::kernel::QueryInterruptLineError
source · #[repr(i8)]
pub enum QueryInterruptLineError {
NotSupported,
BadParam,
}
Expand description
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 kernel.
BadParam
Reading the pending flag of the specified interrupt line is not supported.
Trait Implementations§
source§impl Clone for QueryInterruptLineError
impl Clone for QueryInterruptLineError
source§fn clone(&self) -> QueryInterruptLineError
fn clone(&self) -> QueryInterruptLineError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for QueryInterruptLineError
impl Debug for QueryInterruptLineError
source§impl From<QueryInterruptLineError> for ResultCode
impl From<QueryInterruptLineError> for ResultCode
source§fn from(x: QueryInterruptLineError) -> Self
fn from(x: QueryInterruptLineError) -> Self
Converts to this type from the input type.
source§impl Hash for QueryInterruptLineError
impl Hash for QueryInterruptLineError
source§impl Ord for QueryInterruptLineError
impl Ord for QueryInterruptLineError
source§fn cmp(&self, other: &QueryInterruptLineError) -> Ordering
fn cmp(&self, other: &QueryInterruptLineError) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<QueryInterruptLineError> for QueryInterruptLineError
impl PartialEq<QueryInterruptLineError> for QueryInterruptLineError
source§fn eq(&self, other: &QueryInterruptLineError) -> bool
fn eq(&self, other: &QueryInterruptLineError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<QueryInterruptLineError> for QueryInterruptLineError
impl PartialOrd<QueryInterruptLineError> for QueryInterruptLineError
source§fn partial_cmp(&self, other: &QueryInterruptLineError) -> Option<Ordering>
fn partial_cmp(&self, other: &QueryInterruptLineError) -> Option<Ordering>
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