Enum crypto_msg_parser::MarketType [−][src]
pub enum MarketType {
Spot,
LinearFuture,
InverseFuture,
LinearSwap,
InverseSwap,
Option,
QuantoFuture,
QuantoSwap,
Move,
BVOL,
}Expand description
Market type.
- In spot market, cryptocurrencies are traded for immediate delivery, see https://en.wikipedia.org/wiki/Spot_market.
- In futures market, delivery is set at a specified time in the future, see https://en.wikipedia.org/wiki/Futures_exchange.
- Swap market is a variant of futures market with no expiry date.
Margin
A market can have margin enabled or disabled.
- All contract markets are margin enabled, including future, swap and option.
- Most spot markets don’t have margin enabled, only a few exchanges have spot market with margin enabled.
Linear VS. Inverse
A market can be inverse or linear.
- Linear means USDT-margined, i.e., you can use USDT as collateral
- Inverse means coin-margined, i.e., you can use BTC as collateral.
- Spot market is always linear.
Margin and Inverse are orthogonal.
Variants
Trait Implementations
impl Clone for MarketType[src]
impl Clone for MarketType[src]pub fn clone(&self) -> MarketType[src]
pub fn clone(&self) -> MarketType[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for MarketType[src]
impl Debug for MarketType[src]impl<'de> Deserialize<'de> for MarketType[src]
impl<'de> Deserialize<'de> for MarketType[src]pub fn deserialize<__D>(
__deserializer: __D
) -> Result<MarketType, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>, [src]
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<MarketType, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
impl Display for MarketType[src]
impl Display for MarketType[src]impl FromStr for MarketType[src]
impl FromStr for MarketType[src]type Err = ParseError
type Err = ParseErrorThe associated error which can be returned from parsing.
pub fn from_str(s: &str) -> Result<MarketType, <MarketType as FromStr>::Err>[src]
pub fn from_str(s: &str) -> Result<MarketType, <MarketType as FromStr>::Err>[src]Parses a string s to return a value of this type. Read more
impl Hash for MarketType[src]
impl Hash for MarketType[src]impl PartialEq<MarketType> for MarketType[src]
impl PartialEq<MarketType> for MarketType[src]impl Serialize for MarketType[src]
impl Serialize for MarketType[src]pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer, [src]
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer, [src]Serialize this value into the given Serde serializer. Read more
impl Copy for MarketType[src]
impl Eq for MarketType[src]
impl StructuralEq for MarketType[src]
impl StructuralPartialEq for MarketType[src]
Auto Trait Implementations
impl RefUnwindSafe for MarketType
impl Send for MarketType
impl Sync for MarketType
impl Unpin for MarketType
impl UnwindSafe for MarketType
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]pub fn equivalent(&self, key: &K) -> bool[src]
pub fn equivalent(&self, key: &K) -> bool[src]Compare self to key and return true if they are equal.
impl<T> Instrument for T[src]
impl<T> Instrument for T[src]fn instrument(self, span: Span) -> Instrumented<Self>[src]
fn instrument(self, span: Span) -> Instrumented<Self>[src]Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>[src]
fn in_current_span(self) -> Instrumented<Self>[src]impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,