pub enum Liquidity {
None = 0,
AddedLiquidity = 1,
RemovedLiquidity = 2,
LiquidityRoutedOut = 3,
}Expand description
Liquidity types for executions.
Variants§
None = 0
No liquidity information.
AddedLiquidity = 1
Added liquidity to the market.
RemovedLiquidity = 2
Removed liquidity from the market.
LiquidityRoutedOut = 3
Liquidity was routed out.
Trait Implementations§
impl StructuralPartialEq for Liquidity
Auto Trait Implementations§
impl Freeze for Liquidity
impl RefUnwindSafe for Liquidity
impl Send for Liquidity
impl Sync for Liquidity
impl Unpin for Liquidity
impl UnwindSafe for Liquidity
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more