#[repr(C)]
pub struct io_uring_params { pub sq_entries: __u32, pub cq_entries: __u32, pub flags: __u32, pub sq_thread_cpu: __u32, pub sq_thread_idle: __u32, pub features: __u32, pub wq_fd: __u32, pub resv: [__u32; 3], pub sq_off: io_sqring_offsets, pub cq_off: io_cqring_offsets, }
Expand description

Passed in for io_uring_setup(2). Copied back with updated info on success

Fields

sq_entries: __u32cq_entries: __u32flags: __u32sq_thread_cpu: __u32sq_thread_idle: __u32features: __u32wq_fd: __u32resv: [__u32; 3]sq_off: io_sqring_offsetscq_off: io_cqring_offsets

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.