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

#[repr(C, align(32))]pub struct CqEntry64 {
    pub user_data: u64,
    pub status: u64,
    pub flags: u64,
    pub extra: u64,
}

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

Fields

user_data: u64status: u64flags: u64extra: u64

Trait Implementations

impl Clone for CqEntry64[src]

impl Copy for CqEntry64[src]

impl Debug for CqEntry64[src]

impl Default for CqEntry64[src]

impl Eq for CqEntry64[src]

impl GenericCompletionEntry for CqEntry64[src]

impl Hash for CqEntry64[src]

impl PartialEq<CqEntry64> for CqEntry64[src]

impl StructuralEq for CqEntry64[src]

impl StructuralPartialEq for CqEntry64[src]

Auto Trait Implementations

impl Send for CqEntry64

impl Sync for CqEntry64

impl Unpin for CqEntry64

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.