[][src]Struct syscall::io_uring::v1::CqEntry32

#[repr(C, align(16))]pub struct CqEntry32 {
    pub user_data: u32,
    pub status: u32,
    pub flags: u32,
    pub extra: u32,
}

A 32-bit Completion Queue Entry. Takes up 16 bytes of space.

Fields

user_data: u32

The same user_data specified in the submission entry.

status: u32

The return value of the syscall.

flags: u32

Miscellaneous flags (and possibly other data in the future) describing the completion in general.

extra: u32

An extra return value that is only used by certain opcodes.

Trait Implementations

impl Clone for CqEntry32[src]

impl Copy for CqEntry32[src]

impl Debug for CqEntry32[src]

impl Default for CqEntry32[src]

impl Eq for CqEntry32[src]

impl GenericCompletionEntry for CqEntry32[src]

impl Hash for CqEntry32[src]

impl PartialEq<CqEntry32> for CqEntry32[src]

impl StructuralEq for CqEntry32[src]

impl StructuralPartialEq for CqEntry32[src]

Auto Trait Implementations

impl Send for CqEntry32

impl Sync for CqEntry32

impl Unpin for CqEntry32

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, 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.