pub struct PlaceOrderResponse {
pub order_id: String,
pub client_order_id: Option<String>,
pub status: String,
pub filled_quantity: u64,
pub remaining_quantity: u64,
pub created_at: String,
}Fields§
§order_id: String§client_order_id: Option<String>§status: String§filled_quantity: u64§remaining_quantity: u64§created_at: StringTrait Implementations§
Source§impl Clone for PlaceOrderResponse
impl Clone for PlaceOrderResponse
Source§fn clone(&self) -> PlaceOrderResponse
fn clone(&self) -> PlaceOrderResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlaceOrderResponse
impl Debug for PlaceOrderResponse
Source§impl<'de> Deserialize<'de> for PlaceOrderResponse
impl<'de> Deserialize<'de> for PlaceOrderResponse
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 PlaceOrderResponse
impl RefUnwindSafe for PlaceOrderResponse
impl Send for PlaceOrderResponse
impl Sync for PlaceOrderResponse
impl Unpin for PlaceOrderResponse
impl UnsafeUnpin for PlaceOrderResponse
impl UnwindSafe for PlaceOrderResponse
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