Enum r3_core::kernel::DrainSemaphoreError
source · #[repr(i8)]
pub enum DrainSemaphoreError {
NoAccess,
BadContext,
}
Expand description
Error type for Semaphore::drain
.
See ResultCode
for all result codes and generic descriptions.
Variants§
Trait Implementations§
source§impl Clone for DrainSemaphoreError
impl Clone for DrainSemaphoreError
source§fn clone(&self) -> DrainSemaphoreError
fn clone(&self) -> DrainSemaphoreError
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 DrainSemaphoreError
impl Debug for DrainSemaphoreError
source§impl From<DrainSemaphoreError> for ResultCode
impl From<DrainSemaphoreError> for ResultCode
source§fn from(x: DrainSemaphoreError) -> Self
fn from(x: DrainSemaphoreError) -> Self
Converts to this type from the input type.
source§impl Hash for DrainSemaphoreError
impl Hash for DrainSemaphoreError
source§impl Ord for DrainSemaphoreError
impl Ord for DrainSemaphoreError
source§fn cmp(&self, other: &DrainSemaphoreError) -> Ordering
fn cmp(&self, other: &DrainSemaphoreError) -> 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<DrainSemaphoreError> for DrainSemaphoreError
impl PartialEq<DrainSemaphoreError> for DrainSemaphoreError
source§fn eq(&self, other: &DrainSemaphoreError) -> bool
fn eq(&self, other: &DrainSemaphoreError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<DrainSemaphoreError> for DrainSemaphoreError
impl PartialOrd<DrainSemaphoreError> for DrainSemaphoreError
source§fn partial_cmp(&self, other: &DrainSemaphoreError) -> Option<Ordering>
fn partial_cmp(&self, other: &DrainSemaphoreError) -> 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