pub enum SimpleOrderType {
All,
Limit,
TriggerAll,
Stop,
Take,
TrailingStop,
}Variants§
Trait Implementations§
Source§impl Clone for SimpleOrderType
impl Clone for SimpleOrderType
Source§fn clone(&self) -> SimpleOrderType
fn clone(&self) -> SimpleOrderType
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 SimpleOrderType
impl Debug for SimpleOrderType
Source§impl Default for SimpleOrderType
impl Default for SimpleOrderType
Source§fn default() -> SimpleOrderType
fn default() -> SimpleOrderType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SimpleOrderType
impl<'de> Deserialize<'de> for SimpleOrderType
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 SimpleOrderType
impl PartialEq for SimpleOrderType
Source§impl Serialize for SimpleOrderType
impl Serialize for SimpleOrderType
impl StructuralPartialEq for SimpleOrderType
Auto Trait Implementations§
impl Freeze for SimpleOrderType
impl RefUnwindSafe for SimpleOrderType
impl Send for SimpleOrderType
impl Sync for SimpleOrderType
impl Unpin for SimpleOrderType
impl UnwindSafe for SimpleOrderType
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