pub trait WithQuoteQty {
    fn posted_quote(&self, price: u64) -> Result<u64>;
}
Expand description

Trait to retrieve the posted quote values from an OrderSummary

Required Methods

Implementors