#[repr(C)]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 user_data(self, user_data: impl Into<io_uring_user_data>) -> Entry
pub fn user_data(self, user_data: impl Into<io_uring_user_data>) -> Entry
Set the user data. This is an application-supplied value that will be passed straight through into the completion queue entry.
Sourcepub fn get_user_data(&self) -> io_uring_user_data
pub fn get_user_data(&self) -> io_uring_user_data
Get the previously application-supplied user data.
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§
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