pub struct CoinbaseOrderSuccessResponse {
pub order_id: SmartString,
pub product_id: SmartString,
pub side: SmartString,
pub client_order_id: SmartString,
}Expand description
Successful order response
Fields§
§order_id: SmartStringUnique identifier for the order
product_id: SmartStringProduct identifier for the trading pair
side: SmartStringOrder side: “BUY” or “SELL”
client_order_id: SmartStringClient-provided order identifier
Trait Implementations§
Source§impl Clone for CoinbaseOrderSuccessResponse
impl Clone for CoinbaseOrderSuccessResponse
Source§fn clone(&self) -> CoinbaseOrderSuccessResponse
fn clone(&self) -> CoinbaseOrderSuccessResponse
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 CoinbaseOrderSuccessResponse
impl Debug for CoinbaseOrderSuccessResponse
Source§impl<'de> Deserialize<'de> for CoinbaseOrderSuccessResponse
impl<'de> Deserialize<'de> for CoinbaseOrderSuccessResponse
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 CoinbaseOrderSuccessResponse
impl RefUnwindSafe for CoinbaseOrderSuccessResponse
impl Send for CoinbaseOrderSuccessResponse
impl Sync for CoinbaseOrderSuccessResponse
impl Unpin for CoinbaseOrderSuccessResponse
impl UnwindSafe for CoinbaseOrderSuccessResponse
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