pub struct OptionInstrumentsInfo {Show 21 fields
pub symbol: String,
pub contract_type: ContractType,
pub status: Status,
pub base_coin: String,
pub quote_coin: String,
pub launch_time: i64,
pub delivery_time: i64,
pub delivery_fee_rate: Option<Decimal>,
pub price_scale: i64,
pub leverage_filter: LeverageFilter,
pub price_filter: PriceFilter,
pub lot_size_filter: LotSizeFilter,
pub unified_margin_trade: bool,
pub funding_interval: i64,
pub settle_coin: String,
pub copy_trading: CopyTrading,
pub upper_funding_rate: Decimal,
pub lower_funding_rate: Decimal,
pub risk_parameters: RiskParameters,
pub is_pre_listing: bool,
pub pre_listing_info: Option<PreListingInfo>,
}Fields§
§symbol: String§contract_type: ContractType§status: Status§base_coin: String§quote_coin: String§launch_time: i64§delivery_time: i64§delivery_fee_rate: Option<Decimal>§price_scale: i64§leverage_filter: LeverageFilter§price_filter: PriceFilter§lot_size_filter: LotSizeFilter§unified_margin_trade: bool§funding_interval: i64§settle_coin: String§copy_trading: CopyTrading§upper_funding_rate: Decimal§lower_funding_rate: Decimal§risk_parameters: RiskParameters§is_pre_listing: bool§pre_listing_info: Option<PreListingInfo>Trait Implementations§
Source§impl Debug for OptionInstrumentsInfo
impl Debug for OptionInstrumentsInfo
Source§impl<'de> Deserialize<'de> for OptionInstrumentsInfo
impl<'de> Deserialize<'de> for OptionInstrumentsInfo
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 OptionInstrumentsInfo
impl PartialEq for OptionInstrumentsInfo
Source§fn eq(&self, other: &OptionInstrumentsInfo) -> bool
fn eq(&self, other: &OptionInstrumentsInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OptionInstrumentsInfo
Auto Trait Implementations§
impl Freeze for OptionInstrumentsInfo
impl RefUnwindSafe for OptionInstrumentsInfo
impl Send for OptionInstrumentsInfo
impl Sync for OptionInstrumentsInfo
impl Unpin for OptionInstrumentsInfo
impl UnsafeUnpin for OptionInstrumentsInfo
impl UnwindSafe for OptionInstrumentsInfo
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