Trait futuresdr::runtime::Kernel

source ·
pub trait Kernel: Send {
    // Provided methods
    fn work<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 mut self,
_io: &'life1 mut WorkIo,
_s: &'life2 mut StreamIo,
_m: &'life3 mut MessageIo<Self>,
_b: &'life4 mut BlockMeta
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait
{ ... } fn init<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 mut self,
_s: &'life1 mut StreamIo,
_m: &'life2 mut MessageIo<Self>,
_b: &'life3 mut BlockMeta
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait
{ ... } fn deinit<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 mut self,
_s: &'life1 mut StreamIo,
_m: &'life2 mut MessageIo<Self>,
_b: &'life3 mut BlockMeta
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait
{ ... } }

Provided Methods§

source

fn work<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 mut self,
_io: &'life1 mut WorkIo,
_s: &'life2 mut StreamIo,
_m: &'life3 mut MessageIo<Self>,
_b: &'life4 mut BlockMeta
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait,

source

fn init<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 mut self,
_s: &'life1 mut StreamIo,
_m: &'life2 mut MessageIo<Self>,
_b: &'life3 mut BlockMeta
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,

source

fn deinit<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 mut self,
_s: &'life1 mut StreamIo,
_m: &'life2 mut MessageIo<Self>,
_b: &'life3 mut BlockMeta
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,

Implementors§