pub struct ExecutionReport {
pub id: String,
pub account: String,
pub status: OrderStatus,
pub rate: u64,
pub stop: Option<u64>,
pub amount: u64,
pub executed: Option<u64>,
pub updated_at: u64,
}
Expand description
Market order execution report.
Fields§
§id: String
Order ID.
account: String
Internal account ID.
status: OrderStatus
Order status.
rate: u64
Order rate.
stop: Option<u64>
Order stop rate.
amount: u64
Cumulative order quantity.
executed: Option<u64>
Cumulative executed quantity.
updated_at: u64
Order update time.
Trait Implementations§
Source§impl Clone for ExecutionReport
impl Clone for ExecutionReport
Source§fn clone(&self) -> ExecutionReport
fn clone(&self) -> ExecutionReport
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 ExecutionReport
impl Debug for ExecutionReport
Source§impl<'de> Deserialize<'de> for ExecutionReport
impl<'de> Deserialize<'de> for ExecutionReport
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 ExecutionReport
impl RefUnwindSafe for ExecutionReport
impl Send for ExecutionReport
impl Sync for ExecutionReport
impl Unpin for ExecutionReport
impl UnwindSafe for ExecutionReport
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