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 { ... }
}
Expand description

Kernal

Central trait to implement a block

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,

Processes stream data

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,

Initialize kernel

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,

De-initialize kernel

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: Copy + Send + 'static> Kernel for Delay<T>