Struct io_uring::squeue::Entry[][src]

#[repr(transparent)]pub struct Entry(_);

An entry in the submission queue, representing a request for an I/O operation.

These can be created via the opcodes in opcode.

Implementations

impl Entry[src]

pub fn flags(self, flags: Flags) -> Entry[src]

Set the submission event’s flags.

pub fn user_data(self, user_data: u64) -> Entry[src]

Set the user data. This is an application-supplied value that will be passed straight through into the completion queue entry.

pub fn personality(self, personality: u16) -> Entry[src]

Set the personality of this event. You can obtain a personality using Submitter::register_personality.

Requires the unstable feature.

Trait Implementations

impl Clone for Entry[src]

Auto Trait Implementations

impl RefUnwindSafe for Entry

impl Send for Entry

impl Sync for Entry

impl Unpin for Entry

impl UnwindSafe for Entry

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.