Enum r3_core::kernel::raw::QueueOrderKind
source · #[non_exhaustive]
pub enum QueueOrderKind {
Fifo,
TaskPriority,
}
Expand description
Indicates a variant of QueueOrder
supported by a kernel.
This type is used as the element type of
KernelBase::RAW_SUPPORTED_QUEUE_ORDERS
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
source§impl Clone for QueueOrderKind
impl Clone for QueueOrderKind
source§fn clone(&self) -> QueueOrderKind
fn clone(&self) -> QueueOrderKind
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 QueueOrderKind
impl Debug for QueueOrderKind
source§impl PartialEq<QueueOrderKind> for QueueOrderKind
impl PartialEq<QueueOrderKind> for QueueOrderKind
source§fn eq(&self, other: &QueueOrderKind) -> bool
fn eq(&self, other: &QueueOrderKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.