pub struct UpbitMarketInfo {
pub id: SmartString,
pub name: SmartString,
pub order_types: Vec<SmartString>,
pub order_sides: Vec<SmartString>,
pub bid: UpbitMarketBidAsk,
pub ask: UpbitMarketBidAsk,
pub max_total: SmartString,
pub state: SmartString,
}Expand description
Market information within order chance
Fields§
§id: SmartStringMarket symbol
name: SmartStringMarket name
order_types: Vec<SmartString>Order types available
order_sides: Vec<SmartString>Order sides available
bid: UpbitMarketBidAskBid information
ask: UpbitMarketBidAskAsk information
max_total: SmartStringMaximum total amount
state: SmartStringCurrent state
Trait Implementations§
Source§impl Clone for UpbitMarketInfo
impl Clone for UpbitMarketInfo
Source§fn clone(&self) -> UpbitMarketInfo
fn clone(&self) -> UpbitMarketInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UpbitMarketInfo
impl Debug for UpbitMarketInfo
Source§impl<'de> Deserialize<'de> for UpbitMarketInfo
impl<'de> Deserialize<'de> for UpbitMarketInfo
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 UpbitMarketInfo
impl RefUnwindSafe for UpbitMarketInfo
impl Send for UpbitMarketInfo
impl Sync for UpbitMarketInfo
impl Unpin for UpbitMarketInfo
impl UnwindSafe for UpbitMarketInfo
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