pub struct InstrumentInfo {
pub symbol: String,
pub contract_type: String,
pub status: String,
pub base_coin: String,
pub quote_coin: String,
pub settle_coin: String,
pub price_scale: String,
}Fields§
§symbol: String§contract_type: String§status: String§base_coin: String§quote_coin: String§settle_coin: String§price_scale: StringTrait Implementations§
Source§impl Clone for InstrumentInfo
impl Clone for InstrumentInfo
Source§fn clone(&self) -> InstrumentInfo
fn clone(&self) -> InstrumentInfo
Returns a duplicate of the value. Read more
1.0.0 · 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 InstrumentInfo
impl Debug for InstrumentInfo
Source§impl<'de> Deserialize<'de> for InstrumentInfo
impl<'de> Deserialize<'de> for InstrumentInfo
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 InstrumentInfo
impl RefUnwindSafe for InstrumentInfo
impl Send for InstrumentInfo
impl Sync for InstrumentInfo
impl Unpin for InstrumentInfo
impl UnwindSafe for InstrumentInfo
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