pub struct Entry(/* private fields */);Expand description
A 64-byte submission queue entry (SQE), representing a request for an I/O operation.
These can be created via opcodes in opcode.
Implementations§
Source§impl Entry
impl Entry
Sourcepub fn clear_flags(self) -> Entry
pub fn clear_flags(self) -> Entry
Clear the submission event’s flags.
Sourcepub fn user_data(self, user_data: u64) -> Entry
pub fn user_data(self, user_data: u64) -> Entry
Set the user data. This is an application-supplied value that will be passed straight through into the completion queue entry.
Sourcepub fn set_user_data(&mut self, user_data: u64)
pub fn set_user_data(&mut self, user_data: u64)
Set the user_data without consuming the entry.
Sourcepub fn get_user_data(&self) -> u64
pub fn get_user_data(&self) -> u64
Get the previously application-supplied user data.
Sourcepub fn get_opcode(&self) -> u32
pub fn get_opcode(&self) -> u32
Get the opcode associated with this entry.
Sourcepub fn personality(self, personality: u16) -> Entry
pub fn personality(self, personality: u16) -> Entry
Set the personality of this event. You can obtain a personality using
Submitter::register_personality.
Trait Implementations§
Source§impl EntryMarker for Entry
impl EntryMarker for Entry
const BUILD_FLAGS: u32 = 0u32
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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