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