#[non_exhaustive]#[repr(u32)]pub enum io_uring_napi_tracking_strategy {
IO_URING_NAPI_TRACKING_DYNAMIC = 0,
IO_URING_NAPI_TRACKING_STATIC = 1,
IO_URING_NAPI_TRACKING_INACTIVE = 255,
}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.
IO_URING_NAPI_TRACKING_DYNAMIC = 0
IO_URING_NAPI_TRACKING_STATIC = 1
IO_URING_NAPI_TRACKING_INACTIVE = 255
Trait Implementations§
Source§impl Clone for io_uring_napi_tracking_strategy
impl Clone for io_uring_napi_tracking_strategy
Source§fn clone(&self) -> io_uring_napi_tracking_strategy
fn clone(&self) -> io_uring_napi_tracking_strategy
Returns a duplicate 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 PartialEq for io_uring_napi_tracking_strategy
impl PartialEq for io_uring_napi_tracking_strategy
Source§fn eq(&self, other: &io_uring_napi_tracking_strategy) -> bool
fn eq(&self, other: &io_uring_napi_tracking_strategy) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for io_uring_napi_tracking_strategy
impl Eq for io_uring_napi_tracking_strategy
impl StructuralPartialEq for io_uring_napi_tracking_strategy
Auto Trait Implementations§
impl Freeze for io_uring_napi_tracking_strategy
impl RefUnwindSafe for io_uring_napi_tracking_strategy
impl Send for io_uring_napi_tracking_strategy
impl Sync for io_uring_napi_tracking_strategy
impl Unpin for io_uring_napi_tracking_strategy
impl UnwindSafe for io_uring_napi_tracking_strategy
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more