pub trait CheckOrderService {
    // Required method
    fn check(
        &mut self,
        inst: &str,
        id: &OrderId
    ) -> BoxFuture<'_, Result<OrderUpdate>>;
}
Expand description

Check order service.

Required Methods§

source

fn check( &mut self, inst: &str, id: &OrderId ) -> BoxFuture<'_, Result<OrderUpdate>>

Check the current status of an order.

Implementors§