pub struct InstrumentSpot {
pub symbol: String,
pub base_coin: String,
pub quote_coin: String,
pub status: String,
pub margin_trading: String,
pub st_tag: String,
pub lot_size_filter: LotSizeFilterSpot,
pub price_filter: Value,
pub risk_parameters: RiskParameters,
}Fields§
§symbol: String§base_coin: String§quote_coin: String§status: String§margin_trading: String§st_tag: String§lot_size_filter: LotSizeFilterSpot§price_filter: Value§risk_parameters: RiskParametersTrait Implementations§
Source§impl Clone for InstrumentSpot
impl Clone for InstrumentSpot
Source§fn clone(&self) -> InstrumentSpot
fn clone(&self) -> InstrumentSpot
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 moreSource§impl Debug for InstrumentSpot
impl Debug for InstrumentSpot
Source§impl<'de> Deserialize<'de> for InstrumentSpot
impl<'de> Deserialize<'de> for InstrumentSpot
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
Auto Trait Implementations§
impl Freeze for InstrumentSpot
impl RefUnwindSafe for InstrumentSpot
impl Send for InstrumentSpot
impl Sync for InstrumentSpot
impl Unpin for InstrumentSpot
impl UnsafeUnpin for InstrumentSpot
impl UnwindSafe for InstrumentSpot
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