[][src]Struct syscall::io_uring::v1::ConsumerInstanceBuilder

pub struct ConsumerInstanceBuilder { /* fields omitted */ }

Implementations

impl InstanceBuilder[src]

pub fn new() -> Self[src]

pub fn with_minor_version(self, minor: u8) -> Self[src]

pub fn with_patch_version(self, patch: u8) -> Self[src]

pub fn with_flags(self, flags: IoUringCreateFlags) -> Self[src]

pub fn with_submission_entry_count(self, sq_entry_count: usize) -> Self[src]

pub fn with_recommended_submission_entry_count(self) -> Self[src]

pub fn with_recommended_completion_entry_count(self) -> Self[src]

pub fn with_completion_entry_count(self, cq_entry_count: usize) -> Self[src]

pub fn version(&self) -> IoUringVersion[src]

pub fn flags(&self) -> IoUringCreateFlags[src]

pub fn submission_entry_size(&self) -> usize[src]

pub fn completion_entry_size(&self) -> usize[src]

pub fn submission_entry_count(&self) -> usize[src]

pub fn completion_entry_count(&self) -> usize[src]

pub fn ring_header_size(&self) -> usize[src]

pub fn submission_entries_bytesize(&self) -> usize[src]

pub fn completion_entries_bytesize(&self) -> usize[src]

pub fn create_info(&self) -> IoUringCreateInfo[src]

pub fn create_instance(self) -> Result<Self>[src]

pub fn map_submission_ring_header(self) -> Result<Self>[src]

pub fn map_completion_ring_header(self) -> Result<Self>[src]

pub fn map_submission_entries(self) -> Result<Self>[src]

pub fn map_completion_entries(self) -> Result<Self>[src]

pub fn map_all(self) -> Result<Self>[src]

pub fn attach<N: AsRef<str>>(self, scheme_name: N) -> Result<Instance>[src]

pub fn attach_to_kernel(self) -> Result<Instance>[src]

pub fn attach_raw<N: AsRef<[u8]>>(self, scheme_name: N) -> Result<Instance>[src]

Auto Trait Implementations

impl Send for InstanceBuilder

impl Sync for InstanceBuilder

impl Unpin for InstanceBuilder

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, 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.