pub struct CachedOrderFill {Show 15 fields
pub fill_id: u64,
pub fill_id_ex: String,
pub order_id: u64,
pub order_id_ex: String,
pub code: String,
pub name: String,
pub trd_side: i32,
pub qty: f64,
pub price: f64,
pub create_timestamp: Option<f64>,
pub update_timestamp: Option<f64>,
pub counter_broker_id: Option<i32>,
pub status: Option<i32>,
pub trd_market: Option<i32>,
pub jp_acc_type: Option<i32>,
}Expand description
Cached current-order fill row, matching the public/backend projection used by current fill queries and direct fill notifications.
Fields§
§fill_id: u64§fill_id_ex: String§order_id: u64§order_id_ex: String§code: String§name: String§trd_side: i32§qty: f64§price: f64§create_timestamp: Option<f64>§update_timestamp: Option<f64>§counter_broker_id: Option<i32>§status: Option<i32>§trd_market: Option<i32>§jp_acc_type: Option<i32>Trait Implementations§
Source§impl Clone for CachedOrderFill
impl Clone for CachedOrderFill
Source§fn clone(&self) -> CachedOrderFill
fn clone(&self) -> CachedOrderFill
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CachedOrderFill
impl Debug for CachedOrderFill
Source§impl Default for CachedOrderFill
impl Default for CachedOrderFill
Source§fn default() -> CachedOrderFill
fn default() -> CachedOrderFill
Returns the “default value” for a type. Read more
Source§impl PartialEq for CachedOrderFill
impl PartialEq for CachedOrderFill
Source§fn eq(&self, other: &CachedOrderFill) -> bool
fn eq(&self, other: &CachedOrderFill) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CachedOrderFill
Auto Trait Implementations§
impl Freeze for CachedOrderFill
impl RefUnwindSafe for CachedOrderFill
impl Send for CachedOrderFill
impl Sync for CachedOrderFill
impl Unpin for CachedOrderFill
impl UnsafeUnpin for CachedOrderFill
impl UnwindSafe for CachedOrderFill
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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>
Converts
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>
Converts
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