pub struct BithumbTrade {
pub market: SmartString,
pub uuid: SmartString,
pub price: SmartString,
pub volume: SmartString,
pub funds: SmartString,
pub side: SmartString,
pub created_at: SmartString,
}Expand description
Trade execution details
Fields§
§market: SmartStringMarket symbol
uuid: SmartStringTrade UUID
price: SmartStringTrade price
volume: SmartStringTrade volume
funds: SmartStringTrade funds (total value)
side: SmartStringTrade side (bid/ask)
created_at: SmartStringTrade timestamp
Trait Implementations§
Source§impl Clone for BithumbTrade
impl Clone for BithumbTrade
Source§fn clone(&self) -> BithumbTrade
fn clone(&self) -> BithumbTrade
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 BithumbTrade
impl Debug for BithumbTrade
Source§impl<'de> Deserialize<'de> for BithumbTrade
impl<'de> Deserialize<'de> for BithumbTrade
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 BithumbTrade
impl RefUnwindSafe for BithumbTrade
impl Send for BithumbTrade
impl Sync for BithumbTrade
impl Unpin for BithumbTrade
impl UnwindSafe for BithumbTrade
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