pub trait BaseMarketMutExt<const DECIMALS: u8>: BaseMarketMut<DECIMALS> {
// Provided methods
fn apply_delta(
&mut self,
is_long_token: bool,
delta: &Self::Signed,
) -> Result<()> { ... }
fn apply_delta_to_claimable_fee_pool(
&mut self,
is_long_token: bool,
delta: &Self::Signed,
) -> Result<()> { ... }
}
Expand description
Extension trait for BaseMarketMut
.