pub struct Market {
pub pair: String,
pub status: MarketStatus,
pub base: String,
pub quote: String,
pub price_precision: u64,
pub min_order_in_base_asset: String,
pub min_order_in_quote_asset: String,
pub max_order_in_base_asset: String,
pub max_order_in_quote_asset: String,
pub order_types: Vec<String>,
}
Expand description
Information about a market on Bitvavo.
Fields§
§pair: String
§status: MarketStatus
§base: String
§quote: String
§price_precision: u64
§min_order_in_base_asset: String
§min_order_in_quote_asset: String
§max_order_in_base_asset: String
§max_order_in_quote_asset: String
§order_types: Vec<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Market
impl<'de> Deserialize<'de> for Market
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 Market
impl RefUnwindSafe for Market
impl Send for Market
impl Sync for Market
impl Unpin for Market
impl UnwindSafe for Market
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