pub struct OrderAmend {
pub amend_id: String,
pub amend_type: AmendType,
pub order_quantity: Decimal,
pub display_quantity: Option<Decimal>,
pub remaining_quantity: Decimal,
pub limit_price: Decimal,
pub trigger_price: Option<Decimal>,
pub reason: Option<String>,
pub post_only: bool,
pub timestamp: u64,
}
Fields§
§amend_id: String
§amend_type: AmendType
§order_quantity: Decimal
§display_quantity: Option<Decimal>
§remaining_quantity: Decimal
§limit_price: Decimal
§trigger_price: Option<Decimal>
§reason: Option<String>
§post_only: bool
§timestamp: u64
Trait Implementations§
Source§impl Clone for OrderAmend
impl Clone for OrderAmend
Source§fn clone(&self) -> OrderAmend
fn clone(&self) -> OrderAmend
Returns a copy 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 OrderAmend
impl Debug for OrderAmend
Source§impl<'de> Deserialize<'de> for OrderAmend
impl<'de> Deserialize<'de> for OrderAmend
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
Source§impl PartialEq for OrderAmend
impl PartialEq for OrderAmend
impl StructuralPartialEq for OrderAmend
Auto Trait Implementations§
impl Freeze for OrderAmend
impl RefUnwindSafe for OrderAmend
impl Send for OrderAmend
impl Sync for OrderAmend
impl Unpin for OrderAmend
impl UnwindSafe for OrderAmend
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