pub struct BithumbOrderResponse {
pub uuid: SmartString,
pub market: SmartString,
pub side: SmartString,
pub ord_type: SmartString,
pub price: SmartString,
pub volume: SmartString,
pub created_at: SmartString,
}Expand description
Order creation response
Fields§
§uuid: SmartStringOrder UUID
market: SmartStringMarket symbol
side: SmartStringOrder side
ord_type: SmartStringOrder type
price: SmartStringOrder price
volume: SmartStringOrder volume
created_at: SmartStringOrder creation timestamp
Trait Implementations§
Source§impl Clone for BithumbOrderResponse
impl Clone for BithumbOrderResponse
Source§fn clone(&self) -> BithumbOrderResponse
fn clone(&self) -> BithumbOrderResponse
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 BithumbOrderResponse
impl Debug for BithumbOrderResponse
Source§impl<'de> Deserialize<'de> for BithumbOrderResponse
impl<'de> Deserialize<'de> for BithumbOrderResponse
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 BithumbOrderResponse
impl RefUnwindSafe for BithumbOrderResponse
impl Send for BithumbOrderResponse
impl Sync for BithumbOrderResponse
impl Unpin for BithumbOrderResponse
impl UnwindSafe for BithumbOrderResponse
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