pub struct OrderResponseObject {Show 18 fields
pub id: String,
pub client_id: String,
pub account_id: String,
pub market: String,
pub side: String,
pub price: String,
pub trigger_price: Option<String>,
pub trailing_percent: Option<String>,
pub size: String,
pub remaining_size: String,
pub type_field: String,
pub created_at: String,
pub unfillable_at: Option<String>,
pub expires_at: Option<String>,
pub status: String,
pub time_in_force: String,
pub post_only: bool,
pub cancel_reason: Option<String>,
}Fields§
§id: String§client_id: String§account_id: String§market: String§side: String§price: String§trigger_price: Option<String>§trailing_percent: Option<String>§size: String§remaining_size: String§type_field: String§created_at: String§unfillable_at: Option<String>§expires_at: Option<String>§status: String§time_in_force: String§post_only: bool§cancel_reason: Option<String>Trait Implementations§
Source§impl Clone for OrderResponseObject
impl Clone for OrderResponseObject
Source§fn clone(&self) -> OrderResponseObject
fn clone(&self) -> OrderResponseObject
Returns a duplicate of the value. Read more
1.0.0 · 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 OrderResponseObject
impl Debug for OrderResponseObject
Source§impl<'de> Deserialize<'de> for OrderResponseObject
impl<'de> Deserialize<'de> for OrderResponseObject
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 OrderResponseObject
impl RefUnwindSafe for OrderResponseObject
impl Send for OrderResponseObject
impl Sync for OrderResponseObject
impl Unpin for OrderResponseObject
impl UnwindSafe for OrderResponseObject
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