[][src]Struct syscall::io_uring::linux::io_uring_cqe

#[repr(C)]pub struct io_uring_cqe {
    pub user_data: u64,
    pub result: i32,
    pub flags: u32,
}

The same completion entry type that Linux uses. While this struct is not source-compatible since this is Rust, it will be source and binary compatible from C.

Fields

user_data: u64result: i32flags: u32

Trait Implementations

impl GenericCompletionEntry for io_uring_cqe[src]

Auto Trait Implementations

impl Send for io_uring_cqe

impl Sync for io_uring_cqe

impl Unpin for io_uring_cqe

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.