pub struct InstrumentOption {
pub symbol: String,
pub options_type: String,
pub status: String,
pub base_coin: String,
pub quote_coin: String,
pub settle_coin: String,
pub launch_time: String,
pub delivery_time: String,
pub price_filter: Value,
pub lot_size_filter: Value,
}Fields§
§symbol: String§options_type: String§status: String§base_coin: String§quote_coin: String§settle_coin: String§launch_time: String§delivery_time: String§price_filter: Value§lot_size_filter: ValueTrait Implementations§
Source§impl Clone for InstrumentOption
impl Clone for InstrumentOption
Source§fn clone(&self) -> InstrumentOption
fn clone(&self) -> InstrumentOption
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 InstrumentOption
impl Debug for InstrumentOption
Source§impl<'de> Deserialize<'de> for InstrumentOption
impl<'de> Deserialize<'de> for InstrumentOption
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 InstrumentOption
impl RefUnwindSafe for InstrumentOption
impl Send for InstrumentOption
impl Sync for InstrumentOption
impl Unpin for InstrumentOption
impl UnsafeUnpin for InstrumentOption
impl UnwindSafe for InstrumentOption
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