pub enum ParentTpSlLegOrderType {
Market,
Limit,
}Expand description
Triggered order type: MARKET or LIMIT
JSON schema
{
"description": "Triggered order type: MARKET or LIMIT",
"type": "string",
"enum": [
"MARKET",
"LIMIT"
]
}Variants§
Trait Implementations§
Source§impl Clone for ParentTpSlLegOrderType
impl Clone for ParentTpSlLegOrderType
Source§fn clone(&self) -> ParentTpSlLegOrderType
fn clone(&self) -> ParentTpSlLegOrderType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ParentTpSlLegOrderType
Source§impl Debug for ParentTpSlLegOrderType
impl Debug for ParentTpSlLegOrderType
Source§impl<'de> Deserialize<'de> for ParentTpSlLegOrderType
impl<'de> Deserialize<'de> for ParentTpSlLegOrderType
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 Display for ParentTpSlLegOrderType
impl Display for ParentTpSlLegOrderType
impl Eq for ParentTpSlLegOrderType
Source§impl FromStr for ParentTpSlLegOrderType
impl FromStr for ParentTpSlLegOrderType
Source§impl Hash for ParentTpSlLegOrderType
impl Hash for ParentTpSlLegOrderType
Source§impl Ord for ParentTpSlLegOrderType
impl Ord for ParentTpSlLegOrderType
Source§fn cmp(&self, other: &ParentTpSlLegOrderType) -> Ordering
fn cmp(&self, other: &ParentTpSlLegOrderType) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ParentTpSlLegOrderType
impl PartialEq for ParentTpSlLegOrderType
Source§impl PartialOrd for ParentTpSlLegOrderType
impl PartialOrd for ParentTpSlLegOrderType
Source§impl Serialize for ParentTpSlLegOrderType
impl Serialize for ParentTpSlLegOrderType
impl StructuralPartialEq for ParentTpSlLegOrderType
Source§impl TryFrom<&String> for ParentTpSlLegOrderType
impl TryFrom<&String> for ParentTpSlLegOrderType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ParentTpSlLegOrderType
impl TryFrom<&str> for ParentTpSlLegOrderType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ParentTpSlLegOrderType
impl TryFrom<String> for ParentTpSlLegOrderType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ParentTpSlLegOrderType
impl RefUnwindSafe for ParentTpSlLegOrderType
impl Send for ParentTpSlLegOrderType
impl Sync for ParentTpSlLegOrderType
impl Unpin for ParentTpSlLegOrderType
impl UnsafeUnpin for ParentTpSlLegOrderType
impl UnwindSafe for ParentTpSlLegOrderType
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