Enum compio_driver::OpEntry
source · pub enum OpEntry {
Submission(Entry),
Submission128(Entry128),
Blocking,
}
Expand description
The created entry of OpCode
.
Variants§
Submission(Entry)
This operation creates an io-uring submission entry.
Submission128(Entry128)
Available on crate feature
io-uring-sqe128
only.This operation creates an 128-bit io-uring submission entry.
Blocking
This operation is a blocking one.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for OpEntry
impl Send for OpEntry
impl Sync for OpEntry
impl Unpin for OpEntry
impl UnwindSafe for OpEntry
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