Enum r3_core::kernel::UnparkExactError
source · #[repr(i8)]
pub enum UnparkExactError {
BadContext,
NoAccess,
QueueOverflow,
BadObjectState,
}
Expand description
Error type for Task::unpark_exact
.
See ResultCode
for all result codes and generic descriptions.
Variants§
BadContext
CPU Lock is active.
NoAccess
Invalid object access.
QueueOverflow
The task already has a token.
BadObjectState
The task is in the Dormant state.
Trait Implementations§
source§impl Clone for UnparkExactError
impl Clone for UnparkExactError
source§fn clone(&self) -> UnparkExactError
fn clone(&self) -> UnparkExactError
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 UnparkExactError
impl Debug for UnparkExactError
source§impl From<UnparkExactError> for ResultCode
impl From<UnparkExactError> for ResultCode
source§fn from(x: UnparkExactError) -> Self
fn from(x: UnparkExactError) -> Self
Converts to this type from the input type.
source§impl Hash for UnparkExactError
impl Hash for UnparkExactError
source§impl Ord for UnparkExactError
impl Ord for UnparkExactError
source§fn cmp(&self, other: &UnparkExactError) -> Ordering
fn cmp(&self, other: &UnparkExactError) -> 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<UnparkExactError> for UnparkExactError
impl PartialEq<UnparkExactError> for UnparkExactError
source§fn eq(&self, other: &UnparkExactError) -> bool
fn eq(&self, other: &UnparkExactError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<UnparkExactError> for UnparkExactError
impl PartialOrd<UnparkExactError> for UnparkExactError
source§fn partial_cmp(&self, other: &UnparkExactError) -> Option<Ordering>
fn partial_cmp(&self, other: &UnparkExactError) -> 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