pub struct OrderUpdatedBuilder { /* private fields */ }
Expand description
Builder for OrderUpdated
.
Implementations§
Source§impl OrderUpdatedBuilder
impl OrderUpdatedBuilder
Sourcepub fn trader_id(&mut self, value: TraderId) -> &mut Self
pub fn trader_id(&mut self, value: TraderId) -> &mut Self
The trader ID associated with the event.
Sourcepub fn strategy_id(&mut self, value: StrategyId) -> &mut Self
pub fn strategy_id(&mut self, value: StrategyId) -> &mut Self
The strategy ID associated with the event.
Sourcepub fn instrument_id(&mut self, value: InstrumentId) -> &mut Self
pub fn instrument_id(&mut self, value: InstrumentId) -> &mut Self
The instrument ID associated with the event.
Sourcepub fn client_order_id(&mut self, value: ClientOrderId) -> &mut Self
pub fn client_order_id(&mut self, value: ClientOrderId) -> &mut Self
The client order ID associated with the event.
Sourcepub fn venue_order_id(&mut self, value: Option<VenueOrderId>) -> &mut Self
pub fn venue_order_id(&mut self, value: Option<VenueOrderId>) -> &mut Self
The venue order ID associated with the event.
Sourcepub fn account_id(&mut self, value: Option<AccountId>) -> &mut Self
pub fn account_id(&mut self, value: Option<AccountId>) -> &mut Self
The account ID associated with the event.
Sourcepub fn trigger_price(&mut self, value: Option<Price>) -> &mut Self
pub fn trigger_price(&mut self, value: Option<Price>) -> &mut Self
The order trigger price (STOP).
Sourcepub fn ts_event(&mut self, value: UnixNanos) -> &mut Self
pub fn ts_event(&mut self, value: UnixNanos) -> &mut Self
UNIX timestamp (nanoseconds) when the event occurred.
Sourcepub fn ts_init(&mut self, value: UnixNanos) -> &mut Self
pub fn ts_init(&mut self, value: UnixNanos) -> &mut Self
UNIX timestamp (nanoseconds) when the event was initialized.
Sourcepub fn reconciliation(&mut self, value: u8) -> &mut Self
pub fn reconciliation(&mut self, value: u8) -> &mut Self
If the event was generated during reconciliation.
Sourcepub fn build(&self) -> Result<OrderUpdated, OrderUpdatedBuilderError>
pub fn build(&self) -> Result<OrderUpdated, OrderUpdatedBuilderError>
Trait Implementations§
Source§impl Clone for OrderUpdatedBuilder
impl Clone for OrderUpdatedBuilder
Source§fn clone(&self) -> OrderUpdatedBuilder
fn clone(&self) -> OrderUpdatedBuilder
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 moreAuto Trait Implementations§
impl Freeze for OrderUpdatedBuilder
impl RefUnwindSafe for OrderUpdatedBuilder
impl Send for OrderUpdatedBuilder
impl Sync for OrderUpdatedBuilder
impl Unpin for OrderUpdatedBuilder
impl UnwindSafe for OrderUpdatedBuilder
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