[][src]Struct nc::types::io_uring_params_t

#[repr(C)]
pub struct io_uring_params_t {
    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 sq_off: io_sqring_offsets_t,
    pub cq_off: io_cqring_offsets_t,
    // some fields omitted
}

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: u32sq_off: io_sqring_offsets_tcq_off: io_cqring_offsets_t

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]