#[repr(C)]
pub struct io_uring_sq {
Show 13 fields 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 kdropped: *mut c_uint, pub array: *mut c_uint, pub sqes: *mut io_uring_sqe, pub sqe_head: c_uint, pub sqe_tail: c_uint, 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_uintkdropped: *mut c_uintarray: *mut c_uintsqes: *mut io_uring_sqesqe_head: c_uintsqe_tail: c_uintring_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.