Struct longport::trade::OrderDetail
source · pub struct OrderDetail {Show 37 fields
pub order_id: String,
pub status: OrderStatus,
pub stock_name: String,
pub quantity: Decimal,
pub executed_quantity: Decimal,
pub price: Option<Decimal>,
pub executed_price: Option<Decimal>,
pub submitted_at: OffsetDateTime,
pub side: OrderSide,
pub symbol: String,
pub order_type: OrderType,
pub last_done: Option<Decimal>,
pub trigger_price: Option<Decimal>,
pub msg: String,
pub tag: OrderTag,
pub time_in_force: TimeInForceType,
pub expire_date: Option<Date>,
pub updated_at: Option<OffsetDateTime>,
pub trigger_at: Option<OffsetDateTime>,
pub trailing_amount: Option<Decimal>,
pub trailing_percent: Option<Decimal>,
pub limit_offset: Option<Decimal>,
pub trigger_status: Option<TriggerStatus>,
pub currency: String,
pub outside_rth: Option<OutsideRTH>,
pub remark: String,
pub free_status: CommissionFreeStatus,
pub free_amount: Option<Decimal>,
pub free_currency: Option<String>,
pub deductions_status: DeductionStatus,
pub deductions_amount: Option<Decimal>,
pub deductions_currency: Option<String>,
pub platform_deducted_status: DeductionStatus,
pub platform_deducted_amount: Option<Decimal>,
pub platform_deducted_currency: Option<String>,
pub history: Vec<OrderHistoryDetail>,
pub charge_detail: OrderChargeDetail,
}
Expand description
Order detail
Fields§
§order_id: String
Order ID
status: OrderStatus
Order status
stock_name: String
Stock name
quantity: Decimal
Submitted quantity
executed_quantity: Decimal
Executed quantity
price: Option<Decimal>
Submitted price
executed_price: Option<Decimal>
Executed price
submitted_at: OffsetDateTime
Submitted time
side: OrderSide
Order side
symbol: String
Security code
order_type: OrderType
Order type
last_done: Option<Decimal>
Last done
trigger_price: Option<Decimal>
LIT
/ MIT
Order Trigger Price
msg: String
Rejected Message or remark
tag: OrderTag
Order tag
time_in_force: TimeInForceType
Time in force type
expire_date: Option<Date>
Long term order expire date
updated_at: Option<OffsetDateTime>
Last updated time
trigger_at: Option<OffsetDateTime>
Conditional order trigger time
trailing_amount: Option<Decimal>
TSMAMT
/ TSLPAMT
order trailing amount
trailing_percent: Option<Decimal>
TSMPCT
/ TSLPPCT
order trailing percent
limit_offset: Option<Decimal>
TSLPAMT
/ TSLPPCT
order limit offset amount
trigger_status: Option<TriggerStatus>
Conditional order trigger status
currency: String
Currency
outside_rth: Option<OutsideRTH>
Enable or disable outside regular trading hours
remark: String
Remark
free_status: CommissionFreeStatus
Commission-free Status
free_amount: Option<Decimal>
Commission-free amount
free_currency: Option<String>
Commission-free currency
deductions_status: DeductionStatus
Deduction status
deductions_amount: Option<Decimal>
Deduction amount
deductions_currency: Option<String>
Deduction currency
platform_deducted_status: DeductionStatus
Platform fee deduction status
platform_deducted_amount: Option<Decimal>
Platform deduction amount
platform_deducted_currency: Option<String>
Platform deduction currency
history: Vec<OrderHistoryDetail>
Order history details
charge_detail: OrderChargeDetail
Order charges
Trait Implementations§
source§impl Clone for OrderDetail
impl Clone for OrderDetail
source§fn clone(&self) -> OrderDetail
fn clone(&self) -> OrderDetail
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for OrderDetail
impl Debug for OrderDetail
source§impl<'de> Deserialize<'de> for OrderDetail
impl<'de> Deserialize<'de> for OrderDetail
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>,
Auto Trait Implementations§
impl Freeze for OrderDetail
impl RefUnwindSafe for OrderDetail
impl Send for OrderDetail
impl Sync for OrderDetail
impl Unpin for OrderDetail
impl UnwindSafe for OrderDetail
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more