Trait TradeDataHandler

Source
pub trait TradeDataHandler {
    // Required method
    fn on_execution_report<'life0, 'async_trait>(
        &'life0 self,
        exec_report: ExecutionReport,
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn on_execution_report<'life0, 'async_trait>( &'life0 self, exec_report: ExecutionReport, ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§