pub struct OrderPendingCancelBuilder { /* private fields */ }
Expand description
Builder for OrderPendingCancel
.
Implementations§
Source§impl OrderPendingCancelBuilder
impl OrderPendingCancelBuilder
pub fn trader_id(&mut self, value: TraderId) -> &mut Self
pub fn strategy_id(&mut self, value: StrategyId) -> &mut Self
pub fn instrument_id(&mut self, value: InstrumentId) -> &mut Self
pub fn client_order_id(&mut self, value: ClientOrderId) -> &mut Self
pub fn account_id(&mut self, value: AccountId) -> &mut Self
pub fn event_id(&mut self, value: UUID4) -> &mut Self
pub fn ts_event(&mut self, value: UnixNanos) -> &mut Self
pub fn ts_init(&mut self, value: UnixNanos) -> &mut Self
pub fn reconciliation(&mut self, value: u8) -> &mut Self
pub fn venue_order_id(&mut self, value: Option<VenueOrderId>) -> &mut Self
Sourcepub fn build(
&self,
) -> Result<OrderPendingCancel, OrderPendingCancelBuilderError>
pub fn build( &self, ) -> Result<OrderPendingCancel, OrderPendingCancelBuilderError>
Trait Implementations§
Source§impl Clone for OrderPendingCancelBuilder
impl Clone for OrderPendingCancelBuilder
Source§fn clone(&self) -> OrderPendingCancelBuilder
fn clone(&self) -> OrderPendingCancelBuilder
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 OrderPendingCancelBuilder
impl RefUnwindSafe for OrderPendingCancelBuilder
impl Send for OrderPendingCancelBuilder
impl Sync for OrderPendingCancelBuilder
impl Unpin for OrderPendingCancelBuilder
impl UnwindSafe for OrderPendingCancelBuilder
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