[][src]Struct io_uring::Builder

pub struct Builder { /* fields omitted */ }

IoUring build params

Implementations

impl Builder[src]

pub fn dontfork(&mut self) -> &mut Self[src]

pub fn setup_iopoll(&mut self) -> &mut Self[src]

Perform busy-waiting for an I/O completion, as opposed to getting notifications via an asynchronous IRQ (Interrupt Request).

pub fn setup_sqpoll(&mut self, idle: impl Into<Option<u32>>) -> &mut Self[src]

When this flag is specified, a kernel thread is created to perform submission queue polling. An io_uring instance configured in this way enables an application to issue I/O without ever context switching into the kernel.

pub fn setup_sqpoll_cpu(&mut self, n: u32) -> &mut Self[src]

If this flag is specified, then the poll thread will be bound to the cpu set in the value. This flag is only meaningful when Builder::setup_sqpoll is enabled.

pub fn setup_cqsize(&mut self, n: u32) -> &mut Self[src]

Create the completion queue with struct io_uring_params.cq_entries entries. The value must be greater than entries, and may be rounded up to the next power-of-two.

pub fn setup_clamp(&mut self) -> &mut Self[src]

pub fn setup_attach_wq(&mut self, fd: RawFd) -> &mut Self[src]

pub fn build(&self, entries: u32) -> Result<IoUring>[src]

Build a IoUring.

Trait Implementations

impl Clone for Builder[src]

impl Default for Builder[src]

Auto Trait Implementations

impl RefUnwindSafe for Builder

impl Send for Builder

impl Sync for Builder

impl Unpin for Builder

impl UnwindSafe for Builder

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.