#[repr(u8)]pub enum DriverType {
Poll = 1,
IoUring = 0,
IOCP = 2,
}
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 and cache it. Following calls will return the cached value.
Sourcepub fn is_polling() -> bool
pub fn is_polling() -> bool
Check if the current driver is polling
Sourcepub fn is_iouring() -> bool
pub fn is_iouring() -> bool
Check if the current driver is io-uring
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 Hash for DriverType
impl Hash for DriverType
Source§impl PartialEq for DriverType
impl PartialEq for DriverType
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