#[repr(i8)]
pub enum SetInterruptLinePriorityError {
NotSupported,
BadContext,
BadParam,
}
Expand description
Error type for InterruptLine::set_priority
and
InterruptLine::set_priority_unchecked
.
See ResultCode
for all result codes and generic descriptions.
Variants
NotSupported
The operation is not supported by the kernel.
BadContext
CPU Lock is active, or the current context is not a task context.
BadParam
The specified interrupt number or the specified priority value is out of range.
Trait Implementations
sourceimpl Clone for SetInterruptLinePriorityError
impl Clone for SetInterruptLinePriorityError
sourcefn clone(&self) -> SetInterruptLinePriorityError
fn clone(&self) -> SetInterruptLinePriorityError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SetInterruptLinePriorityError
impl Debug for SetInterruptLinePriorityError
sourceimpl From<SetInterruptLinePriorityError> for ResultCode
impl From<SetInterruptLinePriorityError> for ResultCode
sourcefn from(x: SetInterruptLinePriorityError) -> Self
fn from(x: SetInterruptLinePriorityError) -> Self
Converts to this type from the input type.
sourceimpl Hash for SetInterruptLinePriorityError
impl Hash for SetInterruptLinePriorityError
sourceimpl Ord for SetInterruptLinePriorityError
impl Ord for SetInterruptLinePriorityError
sourceimpl PartialOrd<SetInterruptLinePriorityError> for SetInterruptLinePriorityError
impl PartialOrd<SetInterruptLinePriorityError> for SetInterruptLinePriorityError
sourcefn partial_cmp(&self, other: &SetInterruptLinePriorityError) -> Option<Ordering>
fn partial_cmp(&self, other: &SetInterruptLinePriorityError) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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
impl Copy for SetInterruptLinePriorityError
impl Eq for SetInterruptLinePriorityError
impl StructuralEq for SetInterruptLinePriorityError
impl StructuralPartialEq for SetInterruptLinePriorityError
Auto Trait Implementations
impl RefUnwindSafe for SetInterruptLinePriorityError
impl Send for SetInterruptLinePriorityError
impl Sync for SetInterruptLinePriorityError
impl Unpin for SetInterruptLinePriorityError
impl UnwindSafe for SetInterruptLinePriorityError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more