pub enum PriceLevelSide {
Bid,
Ask,
}Expand description
Bid or ask side. Serializes as “bid”/“ask” on the wire.
Variants§
Trait Implementations§
Source§impl Clone for PriceLevelSide
impl Clone for PriceLevelSide
Source§fn clone(&self) -> PriceLevelSide
fn clone(&self) -> PriceLevelSide
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PriceLevelSide
impl Debug for PriceLevelSide
Source§impl<'de> Deserialize<'de> for PriceLevelSide
impl<'de> Deserialize<'de> for PriceLevelSide
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PriceLevelSide
impl PartialEq for PriceLevelSide
Source§impl Serialize for PriceLevelSide
impl Serialize for PriceLevelSide
impl Copy for PriceLevelSide
impl Eq for PriceLevelSide
impl StructuralPartialEq for PriceLevelSide
Auto Trait Implementations§
impl Freeze for PriceLevelSide
impl RefUnwindSafe for PriceLevelSide
impl Send for PriceLevelSide
impl Sync for PriceLevelSide
impl Unpin for PriceLevelSide
impl UnsafeUnpin for PriceLevelSide
impl UnwindSafe for PriceLevelSide
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