Enum compio_driver::DriverType
source · #[repr(u8)]pub enum DriverType {
Poll = 1,
IoUring = 0,
}
Expand description
Representing underlying driver type the fusion driver is using
Variants§
Implementations§
source§impl DriverType
impl DriverType
sourcepub fn current() -> DriverType
pub fn current() -> DriverType
Get the underlying driver type
Trait Implementations§
source§impl Clone for DriverType
impl Clone for DriverType
source§fn clone(&self) -> DriverType
fn clone(&self) -> DriverType
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 DriverType
impl Debug for DriverType
source§impl PartialEq for DriverType
impl PartialEq for DriverType
source§fn eq(&self, other: &DriverType) -> bool
fn eq(&self, other: &DriverType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for DriverType
impl Eq for DriverType
impl StructuralPartialEq for DriverType
Auto Trait Implementations§
impl Freeze for DriverType
impl RefUnwindSafe for DriverType
impl Send for DriverType
impl Sync for DriverType
impl Unpin for DriverType
impl UnwindSafe for DriverType
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