#[repr(C)]
pub struct io_uring_cq { pub khead: *mut c_uint, pub ktail: *mut c_uint, pub kring_mask: *mut c_uint, pub kring_entries: *mut c_uint, pub kflags: *mut c_uint, pub koverflow: *mut c_uint, pub cqes: *mut io_uring_cqe, pub ring_sz: size_t, pub ring_ptr: *mut c_void, pub pad: [c_uint; 4], }

Fields

khead: *mut c_uintktail: *mut c_uintkring_mask: *mut c_uintkring_entries: *mut c_uintkflags: *mut c_uintkoverflow: *mut c_uintcqes: *mut io_uring_cqering_sz: size_tring_ptr: *mut c_voidpad: [c_uint; 4]

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.