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 Freeze for OpEntry
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