Enum r3_core::kernel::TryLockMutexError
source · #[repr(i8)]
pub enum TryLockMutexError {
NoAccess,
BadContext,
Timeout,
WouldDeadlock,
BadParam,
Abandoned,
}
Expand description
Error type for Mutex::try_lock
.
See ResultCode
for all result codes and generic descriptions.
Variants§
NoAccess
Invalid object access.
BadContext
CPU Lock is active, or the current context is not a task context.
Timeout
WouldDeadlock
The current task already owns the mutex.
BadParam
The mutex was created with the protocol attribute having the value
Ceiling
and the current task’s priority is higher than the
mutex’s priority ceiling.
Abandoned
The previous owning task exited while holding the mutex lock. The current task shall hold the mutex lock, but is up to make the state consistent.
Trait Implementations§
source§impl Clone for TryLockMutexError
impl Clone for TryLockMutexError
source§fn clone(&self) -> TryLockMutexError
fn clone(&self) -> TryLockMutexError
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 TryLockMutexError
impl Debug for TryLockMutexError
source§impl From<TryLockMutexError> for ResultCode
impl From<TryLockMutexError> for ResultCode
source§fn from(x: TryLockMutexError) -> Self
fn from(x: TryLockMutexError) -> Self
Converts to this type from the input type.
source§impl Hash for TryLockMutexError
impl Hash for TryLockMutexError
source§impl Ord for TryLockMutexError
impl Ord for TryLockMutexError
source§fn cmp(&self, other: &TryLockMutexError) -> Ordering
fn cmp(&self, other: &TryLockMutexError) -> 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<TryLockMutexError> for TryLockMutexError
impl PartialEq<TryLockMutexError> for TryLockMutexError
source§fn eq(&self, other: &TryLockMutexError) -> bool
fn eq(&self, other: &TryLockMutexError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<TryLockMutexError> for TryLockMutexError
impl PartialOrd<TryLockMutexError> for TryLockMutexError
source§fn partial_cmp(&self, other: &TryLockMutexError) -> Option<Ordering>
fn partial_cmp(&self, other: &TryLockMutexError) -> 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