pub enum OrderTransactionType {
Buy,
Sell,
}
Variants§
Trait Implementations§
Source§impl Clone for OrderTransactionType
impl Clone for OrderTransactionType
Source§fn clone(&self) -> OrderTransactionType
fn clone(&self) -> OrderTransactionType
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 OrderTransactionType
impl Debug for OrderTransactionType
Source§impl<'de> Deserialize<'de> for OrderTransactionType
impl<'de> Deserialize<'de> for OrderTransactionType
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 OrderTransactionType
impl PartialEq for OrderTransactionType
Source§impl PartialOrd for OrderTransactionType
impl PartialOrd for OrderTransactionType
Source§impl Serialize for OrderTransactionType
impl Serialize for OrderTransactionType
impl StructuralPartialEq for OrderTransactionType
Auto Trait Implementations§
impl Freeze for OrderTransactionType
impl RefUnwindSafe for OrderTransactionType
impl Send for OrderTransactionType
impl Sync for OrderTransactionType
impl Unpin for OrderTransactionType
impl UnwindSafe for OrderTransactionType
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