pub trait MarketAction {
type Report;
// Required method
fn execute(self) -> Result<Self::Report>;
}Expand description
Market Action.
pub trait MarketAction {
type Report;
// Required method
fn execute(self) -> Result<Self::Report>;
}Market Action.