Struct longport::trade::OrderDetail

source ·
pub struct OrderDetail {
Show 37 fields pub order_id: String, pub status: OrderStatus, pub stock_name: String, pub quantity: i64, pub executed_quantity: i64, 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: i64

Submitted quantity

§executed_quantity: i64

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

source§

fn clone(&self) -> OrderDetail

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for OrderDetail

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for OrderDetail

source§

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§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,