pub trait CaptureBufferReader {
    // Required method
    fn get_next_capture_period<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        ex: &'life1 Executor
    ) -> Pin<Box<dyn Future<Output = Result<AsyncCaptureBuffer<'_>, BoxError>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}
Expand description

Trait to wrap system specific helpers for reading from the start point capture buffer.

Required Methods§

source

fn get_next_capture_period<'life0, 'life1, 'async_trait>( &'life0 mut self, ex: &'life1 Executor ) -> Pin<Box<dyn Future<Output = Result<AsyncCaptureBuffer<'_>, BoxError>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§