Skip to main content

OrderState

Struct OrderState 

Source
pub struct OrderState {
Show 30 fields pub status: Option<String>, pub init_margin_before: Option<f64>, pub maint_margin_before: Option<f64>, pub equity_with_loan_before: Option<f64>, pub init_margin_change: Option<f64>, pub maint_margin_change: Option<f64>, pub equity_with_loan_change: Option<f64>, pub init_margin_after: Option<f64>, pub maint_margin_after: Option<f64>, pub equity_with_loan_after: Option<f64>, pub commission_and_fees: Option<f64>, pub min_commission_and_fees: Option<f64>, pub max_commission_and_fees: Option<f64>, pub commission_and_fees_currency: Option<String>, pub margin_currency: Option<String>, pub init_margin_before_outside_rth: Option<f64>, pub maint_margin_before_outside_rth: Option<f64>, pub equity_with_loan_before_outside_rth: Option<f64>, pub init_margin_change_outside_rth: Option<f64>, pub maint_margin_change_outside_rth: Option<f64>, pub equity_with_loan_change_outside_rth: Option<f64>, pub init_margin_after_outside_rth: Option<f64>, pub maint_margin_after_outside_rth: Option<f64>, pub equity_with_loan_after_outside_rth: Option<f64>, pub suggested_size: Option<String>, pub reject_reason: Option<String>, pub order_allocations: Vec<OrderAllocation>, pub warning_text: Option<String>, pub completed_time: Option<String>, pub completed_status: Option<String>,
}

Fields§

§status: Option<String>§init_margin_before: Option<f64>§maint_margin_before: Option<f64>§equity_with_loan_before: Option<f64>§init_margin_change: Option<f64>§maint_margin_change: Option<f64>§equity_with_loan_change: Option<f64>§init_margin_after: Option<f64>§maint_margin_after: Option<f64>§equity_with_loan_after: Option<f64>§commission_and_fees: Option<f64>§min_commission_and_fees: Option<f64>§max_commission_and_fees: Option<f64>§commission_and_fees_currency: Option<String>§margin_currency: Option<String>§init_margin_before_outside_rth: Option<f64>§maint_margin_before_outside_rth: Option<f64>§equity_with_loan_before_outside_rth: Option<f64>§init_margin_change_outside_rth: Option<f64>§maint_margin_change_outside_rth: Option<f64>§equity_with_loan_change_outside_rth: Option<f64>§init_margin_after_outside_rth: Option<f64>§maint_margin_after_outside_rth: Option<f64>§equity_with_loan_after_outside_rth: Option<f64>§suggested_size: Option<String>§reject_reason: Option<String>§order_allocations: Vec<OrderAllocation>§warning_text: Option<String>§completed_time: Option<String>§completed_status: Option<String>

Implementations§

Source§

impl OrderState

Source

pub fn status(&self) -> &str

Returns the value of status, or the default value if status is unset.

Source

pub fn init_margin_before(&self) -> f64

Returns the value of init_margin_before, or the default value if init_margin_before is unset.

Source

pub fn maint_margin_before(&self) -> f64

Returns the value of maint_margin_before, or the default value if maint_margin_before is unset.

Source

pub fn equity_with_loan_before(&self) -> f64

Returns the value of equity_with_loan_before, or the default value if equity_with_loan_before is unset.

Source

pub fn init_margin_change(&self) -> f64

Returns the value of init_margin_change, or the default value if init_margin_change is unset.

Source

pub fn maint_margin_change(&self) -> f64

Returns the value of maint_margin_change, or the default value if maint_margin_change is unset.

Source

pub fn equity_with_loan_change(&self) -> f64

Returns the value of equity_with_loan_change, or the default value if equity_with_loan_change is unset.

Source

pub fn init_margin_after(&self) -> f64

Returns the value of init_margin_after, or the default value if init_margin_after is unset.

Source

pub fn maint_margin_after(&self) -> f64

Returns the value of maint_margin_after, or the default value if maint_margin_after is unset.

Source

pub fn equity_with_loan_after(&self) -> f64

Returns the value of equity_with_loan_after, or the default value if equity_with_loan_after is unset.

Source

pub fn commission_and_fees(&self) -> f64

Returns the value of commission_and_fees, or the default value if commission_and_fees is unset.

Source

pub fn min_commission_and_fees(&self) -> f64

Returns the value of min_commission_and_fees, or the default value if min_commission_and_fees is unset.

Source

pub fn max_commission_and_fees(&self) -> f64

Returns the value of max_commission_and_fees, or the default value if max_commission_and_fees is unset.

Source

pub fn commission_and_fees_currency(&self) -> &str

Returns the value of commission_and_fees_currency, or the default value if commission_and_fees_currency is unset.

Source

pub fn margin_currency(&self) -> &str

Returns the value of margin_currency, or the default value if margin_currency is unset.

Source

pub fn init_margin_before_outside_rth(&self) -> f64

Returns the value of init_margin_before_outside_rth, or the default value if init_margin_before_outside_rth is unset.

Source

pub fn maint_margin_before_outside_rth(&self) -> f64

Returns the value of maint_margin_before_outside_rth, or the default value if maint_margin_before_outside_rth is unset.

Source

pub fn equity_with_loan_before_outside_rth(&self) -> f64

Returns the value of equity_with_loan_before_outside_rth, or the default value if equity_with_loan_before_outside_rth is unset.

Source

pub fn init_margin_change_outside_rth(&self) -> f64

Returns the value of init_margin_change_outside_rth, or the default value if init_margin_change_outside_rth is unset.

Source

pub fn maint_margin_change_outside_rth(&self) -> f64

Returns the value of maint_margin_change_outside_rth, or the default value if maint_margin_change_outside_rth is unset.

Source

pub fn equity_with_loan_change_outside_rth(&self) -> f64

Returns the value of equity_with_loan_change_outside_rth, or the default value if equity_with_loan_change_outside_rth is unset.

Source

pub fn init_margin_after_outside_rth(&self) -> f64

Returns the value of init_margin_after_outside_rth, or the default value if init_margin_after_outside_rth is unset.

Source

pub fn maint_margin_after_outside_rth(&self) -> f64

Returns the value of maint_margin_after_outside_rth, or the default value if maint_margin_after_outside_rth is unset.

Source

pub fn equity_with_loan_after_outside_rth(&self) -> f64

Returns the value of equity_with_loan_after_outside_rth, or the default value if equity_with_loan_after_outside_rth is unset.

Source

pub fn suggested_size(&self) -> &str

Returns the value of suggested_size, or the default value if suggested_size is unset.

Source

pub fn reject_reason(&self) -> &str

Returns the value of reject_reason, or the default value if reject_reason is unset.

Source

pub fn warning_text(&self) -> &str

Returns the value of warning_text, or the default value if warning_text is unset.

Source

pub fn completed_time(&self) -> &str

Returns the value of completed_time, or the default value if completed_time is unset.

Source

pub fn completed_status(&self) -> &str

Returns the value of completed_status, or the default value if completed_status is unset.

Trait Implementations§

Source§

impl Clone for OrderState

Source§

fn clone(&self) -> OrderState

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for OrderState

Source§

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

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

impl Default for OrderState

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Message for OrderState

Source§

fn encoded_len(&self) -> usize

Returns the encoded length of the message without a length delimiter.
Source§

fn clear(&mut self)

Clears the message, resetting all fields to their default.
Source§

fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>
where Self: Sized,

Encodes the message to a buffer. Read more
Source§

fn encode_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message to a newly allocated buffer.
Source§

fn encode_length_delimited( &self, buf: &mut impl BufMut, ) -> Result<(), EncodeError>
where Self: Sized,

Encodes the message with a length-delimiter to a buffer. Read more
Source§

fn encode_length_delimited_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message with a length-delimiter to a newly allocated buffer.
Source§

fn decode(buf: impl Buf) -> Result<Self, DecodeError>
where Self: Default,

Decodes an instance of the message from a buffer. Read more
Source§

fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>
where Self: Default,

Decodes a length-delimited instance of the message from the buffer.
Source§

fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>
where Self: Sized,

Decodes an instance of the message from a buffer, and merges it into self. Read more
Source§

fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>
where Self: Sized,

Decodes a length-delimited instance of the message from buffer, and merges it into self.
Source§

impl PartialEq for OrderState

Source§

fn eq(&self, other: &OrderState) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for OrderState

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToOwned for T
where T: Clone,

Source§

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>,

Source§

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>,

Source§

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.