[−][src]Struct io_uring::Builder
IoUring build params
Methods
impl Builder
[src]
pub fn dontfork(&mut self) -> &mut Self
[src]
pub fn feature_single_mmap(&mut self) -> &mut Self
[src]
unnecessary
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
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,