Struct datamaxi::models::SymbolsResponse
source · pub struct SymbolsResponse {
pub exchange: String,
pub market: String,
pub base: String,
pub quote: String,
pub symbol: String,
pub id: Option<String>,
}
Expand description
Response containing details about symbols.
Fields§
§exchange: String
The name of the exchange.
market: String
The market type (e.g., spot, futures).
base: String
The base asset of the trading pair.
quote: String
The quote asset of the trading pair.
symbol: String
The trading symbol (e.g., BTC-USDT).
id: Option<String>
An optional unique identifier for the symbol.
Trait Implementations§
source§impl Debug for SymbolsResponse
impl Debug for SymbolsResponse
source§impl<'de> Deserialize<'de> for SymbolsResponse
impl<'de> Deserialize<'de> for SymbolsResponse
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 SymbolsResponse
impl RefUnwindSafe for SymbolsResponse
impl Send for SymbolsResponse
impl Sync for SymbolsResponse
impl Unpin for SymbolsResponse
impl UnwindSafe for SymbolsResponse
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