#[repr(C)]pub struct Entry128(_, _);
Expand description
A 128-byte submission queue entry (SQE), representing a request for an I/O operation.
These can be created via opcodes in opcode
.
Implementations§
source§impl Entry128
impl Entry128
sourcepub fn user_data(self, user_data: u64) -> Entry128
pub fn user_data(self, user_data: u64) -> Entry128
Set the user data. This is an application-supplied value that will be passed straight through into the completion queue entry.
sourcepub fn personality(self, personality: u16) -> Entry128
pub fn personality(self, personality: u16) -> Entry128
Set the personality of this event. You can obtain a personality using
Submitter::register_personality
.