pub enum GetOrdersTradingMode {
Spot,
Margin,
}Expand description
GetOrdersTradingMode
JSON schema
{
"type": "string",
"enum": [
"SPOT",
"MARGIN"
],
"minLength": 1
}Variants§
Trait Implementations§
Source§impl Clone for GetOrdersTradingMode
impl Clone for GetOrdersTradingMode
Source§fn clone(&self) -> GetOrdersTradingMode
fn clone(&self) -> GetOrdersTradingMode
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 GetOrdersTradingMode
Source§impl Debug for GetOrdersTradingMode
impl Debug for GetOrdersTradingMode
Source§impl<'de> Deserialize<'de> for GetOrdersTradingMode
impl<'de> Deserialize<'de> for GetOrdersTradingMode
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 GetOrdersTradingMode
impl Display for GetOrdersTradingMode
impl Eq for GetOrdersTradingMode
Source§impl FromStr for GetOrdersTradingMode
impl FromStr for GetOrdersTradingMode
Source§impl Hash for GetOrdersTradingMode
impl Hash for GetOrdersTradingMode
Source§impl Ord for GetOrdersTradingMode
impl Ord for GetOrdersTradingMode
Source§fn cmp(&self, other: &GetOrdersTradingMode) -> Ordering
fn cmp(&self, other: &GetOrdersTradingMode) -> 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 GetOrdersTradingMode
impl PartialEq for GetOrdersTradingMode
Source§impl PartialOrd for GetOrdersTradingMode
impl PartialOrd for GetOrdersTradingMode
Source§impl Serialize for GetOrdersTradingMode
impl Serialize for GetOrdersTradingMode
impl StructuralPartialEq for GetOrdersTradingMode
Source§impl TryFrom<&String> for GetOrdersTradingMode
impl TryFrom<&String> for GetOrdersTradingMode
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for GetOrdersTradingMode
impl TryFrom<&str> for GetOrdersTradingMode
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for GetOrdersTradingMode
impl TryFrom<String> for GetOrdersTradingMode
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for GetOrdersTradingMode
impl RefUnwindSafe for GetOrdersTradingMode
impl Send for GetOrdersTradingMode
impl Sync for GetOrdersTradingMode
impl Unpin for GetOrdersTradingMode
impl UnsafeUnpin for GetOrdersTradingMode
impl UnwindSafe for GetOrdersTradingMode
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