pub struct BinaryRunner { /* private fields */ }Implementations§
Source§impl BinaryRunner
impl BinaryRunner
Trait Implementations§
Source§impl Runner for BinaryRunner
impl Runner for BinaryRunner
Source§fn run<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<EventStream, RunnerError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn run<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<EventStream, RunnerError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Run the data collection and return a stream of events
Source§fn add_analyzer(self, analyzer: Box<dyn Analyzer>) -> Self
fn add_analyzer(self, analyzer: Box<dyn Analyzer>) -> Self
Add an analyzer to this runner’s processing chain
Auto Trait Implementations§
impl !RefUnwindSafe for BinaryRunner
impl !UnwindSafe for BinaryRunner
impl Freeze for BinaryRunner
impl Send for BinaryRunner
impl Sync for BinaryRunner
impl Unpin for BinaryRunner
impl UnsafeUnpin for BinaryRunner
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more