Trait bastion::io::HandleOpRegisterer[][src]

pub trait HandleOpRegisterer {
    pub fn read_registerer(
        &self
    ) -> Arc<TTas<Option<Pin<Box<dyn Future<Output = Result<usize, Error>> + 'static, Global>>>>>;
pub fn write_registerer(
        &self
    ) -> Arc<TTas<Option<Pin<Box<dyn Future<Output = Result<usize, Error>> + 'static, Global>>>>>; }

Operation registrar for Proactive IO, represents the outer ring that will send & receive submissions and completions respectively.

Required methods

pub fn read_registerer(
    &self
) -> Arc<TTas<Option<Pin<Box<dyn Future<Output = Result<usize, Error>> + 'static, Global>>>>>
[src]

pub fn write_registerer(
    &self
) -> Arc<TTas<Option<Pin<Box<dyn Future<Output = Result<usize, Error>> + 'static, Global>>>>>
[src]

Loading content...

Implementors

impl<'_, T> HandleOpRegisterer for &'_ Handle<T>[src]

impl<T> HandleOpRegisterer for Handle<T>[src]

Loading content...