pub struct OrderCancelRequest { /* private fields */ }
Implementations§
Source§impl OrderCancelRequest
impl OrderCancelRequest
pub const MSG_TYPE_BYTES: &'static str = "F"
pub const MSG_TYPE: MsgType
pub fn header(&mut self) -> Header<'_>
pub fn header_mut(&mut self) -> HeaderMut<'_>
pub fn trailer(&mut self) -> Trailer<'_>
pub fn trailer_mut(&mut self) -> TrailerMut<'_>
Sourcepub fn to_fix_string(&self) -> String
pub fn to_fix_string(&self) -> String
Convert inner message as FIX text.
This method is only here for debug / tests purposes. Do not use this in real production code.
Source§impl OrderCancelRequest
impl OrderCancelRequest
pub fn try_new( orig_cl_ord_id: OrigClOrdID, cl_ord_id: ClOrdID, symbol: Symbol, side: Side, transact_time: TransactTime, ) -> Result<Self, QuickFixError>
Source§impl OrderCancelRequest
impl OrderCancelRequest
pub fn get_orig_cl_ord_id(&self) -> OrigClOrdID
pub fn get_order_id(&self) -> Option<OrderID>
pub fn get_cl_ord_id(&self) -> ClOrdID
pub fn get_list_id(&self) -> Option<ListID>
pub fn get_account(&self) -> Option<Account>
pub fn get_client_id(&self) -> Option<ClientID>
pub fn get_exec_broker(&self) -> Option<ExecBroker>
pub fn get_symbol(&self) -> Symbol
pub fn get_symbol_sfx(&self) -> Option<SymbolSfx>
pub fn get_security_id(&self) -> Option<SecurityID>
pub fn get_id_source(&self) -> Option<IDSource>
pub fn get_security_type(&self) -> Option<SecurityType>
pub fn get_maturity_month_year(&self) -> Option<MaturityMonthYear>
pub fn get_maturity_day(&self) -> Option<MaturityDay>
pub fn get_put_or_call(&self) -> Option<PutOrCall>
pub fn get_strike_price(&self) -> Option<StrikePrice>
pub fn get_opt_attribute(&self) -> Option<OptAttribute>
pub fn get_contract_multiplier(&self) -> Option<ContractMultiplier>
pub fn get_coupon_rate(&self) -> Option<CouponRate>
pub fn get_security_exchange(&self) -> Option<SecurityExchange>
pub fn get_issuer(&self) -> Option<Issuer>
pub fn get_encoded_issuer_len(&self) -> Option<EncodedIssuerLen>
pub fn get_encoded_issuer(&self) -> Option<EncodedIssuer>
pub fn get_security_desc(&self) -> Option<SecurityDesc>
pub fn get_encoded_security_desc_len(&self) -> Option<EncodedSecurityDescLen>
pub fn get_encoded_security_desc(&self) -> Option<EncodedSecurityDesc>
pub fn get_side(&self) -> Side
pub fn get_transact_time(&self) -> TransactTime
pub fn get_order_qty(&self) -> Option<OrderQty>
pub fn get_cash_order_qty(&self) -> Option<CashOrderQty>
pub fn get_compliance_id(&self) -> Option<ComplianceID>
pub fn get_solicited_flag(&self) -> Option<SolicitedFlag>
pub fn get_text(&self) -> Option<Text>
pub fn get_encoded_text_len(&self) -> Option<EncodedTextLen>
pub fn get_encoded_text(&self) -> Option<EncodedText>
pub fn set_orig_cl_ord_id( &mut self, value: OrigClOrdID, ) -> Result<&Self, QuickFixError>
pub fn set_order_id(&mut self, value: OrderID) -> Result<&Self, QuickFixError>
pub fn remove_order_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_cl_ord_id(&mut self, value: ClOrdID) -> Result<&Self, QuickFixError>
pub fn set_list_id(&mut self, value: ListID) -> Result<&Self, QuickFixError>
pub fn remove_list_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_account(&mut self, value: Account) -> Result<&Self, QuickFixError>
pub fn remove_account(&mut self) -> Result<&Self, QuickFixError>
pub fn set_client_id(&mut self, value: ClientID) -> Result<&Self, QuickFixError>
pub fn remove_client_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_exec_broker( &mut self, value: ExecBroker, ) -> Result<&Self, QuickFixError>
pub fn remove_exec_broker(&mut self) -> Result<&Self, QuickFixError>
pub fn set_symbol(&mut self, value: Symbol) -> Result<&Self, QuickFixError>
pub fn set_symbol_sfx( &mut self, value: SymbolSfx, ) -> Result<&Self, QuickFixError>
pub fn remove_symbol_sfx(&mut self) -> Result<&Self, QuickFixError>
pub fn set_security_id( &mut self, value: SecurityID, ) -> Result<&Self, QuickFixError>
pub fn remove_security_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_id_source(&mut self, value: IDSource) -> Result<&Self, QuickFixError>
pub fn remove_id_source(&mut self) -> Result<&Self, QuickFixError>
pub fn set_security_type( &mut self, value: SecurityType, ) -> Result<&Self, QuickFixError>
pub fn remove_security_type(&mut self) -> Result<&Self, QuickFixError>
pub fn set_maturity_month_year( &mut self, value: MaturityMonthYear, ) -> Result<&Self, QuickFixError>
pub fn remove_maturity_month_year(&mut self) -> Result<&Self, QuickFixError>
pub fn set_maturity_day( &mut self, value: MaturityDay, ) -> Result<&Self, QuickFixError>
pub fn remove_maturity_day(&mut self) -> Result<&Self, QuickFixError>
pub fn set_put_or_call( &mut self, value: PutOrCall, ) -> Result<&Self, QuickFixError>
pub fn remove_put_or_call(&mut self) -> Result<&Self, QuickFixError>
pub fn set_strike_price( &mut self, value: StrikePrice, ) -> Result<&Self, QuickFixError>
pub fn remove_strike_price(&mut self) -> Result<&Self, QuickFixError>
pub fn set_opt_attribute( &mut self, value: OptAttribute, ) -> Result<&Self, QuickFixError>
pub fn remove_opt_attribute(&mut self) -> Result<&Self, QuickFixError>
pub fn set_contract_multiplier( &mut self, value: ContractMultiplier, ) -> Result<&Self, QuickFixError>
pub fn remove_contract_multiplier(&mut self) -> Result<&Self, QuickFixError>
pub fn set_coupon_rate( &mut self, value: CouponRate, ) -> Result<&Self, QuickFixError>
pub fn remove_coupon_rate(&mut self) -> Result<&Self, QuickFixError>
pub fn set_security_exchange( &mut self, value: SecurityExchange, ) -> Result<&Self, QuickFixError>
pub fn remove_security_exchange(&mut self) -> Result<&Self, QuickFixError>
pub fn set_issuer(&mut self, value: Issuer) -> Result<&Self, QuickFixError>
pub fn remove_issuer(&mut self) -> Result<&Self, QuickFixError>
pub fn set_encoded_issuer_len( &mut self, value: EncodedIssuerLen, ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_issuer_len(&mut self) -> Result<&Self, QuickFixError>
pub fn set_encoded_issuer( &mut self, value: EncodedIssuer, ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_issuer(&mut self) -> Result<&Self, QuickFixError>
pub fn set_security_desc( &mut self, value: SecurityDesc, ) -> Result<&Self, QuickFixError>
pub fn remove_security_desc(&mut self) -> Result<&Self, QuickFixError>
pub fn set_encoded_security_desc_len( &mut self, value: EncodedSecurityDescLen, ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_security_desc_len( &mut self, ) -> Result<&Self, QuickFixError>
pub fn set_encoded_security_desc( &mut self, value: EncodedSecurityDesc, ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_security_desc(&mut self) -> Result<&Self, QuickFixError>
pub fn set_side(&mut self, value: Side) -> Result<&Self, QuickFixError>
pub fn set_transact_time( &mut self, value: TransactTime, ) -> Result<&Self, QuickFixError>
pub fn set_order_qty(&mut self, value: OrderQty) -> Result<&Self, QuickFixError>
pub fn remove_order_qty(&mut self) -> Result<&Self, QuickFixError>
pub fn set_cash_order_qty( &mut self, value: CashOrderQty, ) -> Result<&Self, QuickFixError>
pub fn remove_cash_order_qty(&mut self) -> Result<&Self, QuickFixError>
pub fn set_compliance_id( &mut self, value: ComplianceID, ) -> Result<&Self, QuickFixError>
pub fn remove_compliance_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_solicited_flag( &mut self, value: SolicitedFlag, ) -> Result<&Self, QuickFixError>
pub fn remove_solicited_flag(&mut self) -> Result<&Self, QuickFixError>
pub fn set_text(&mut self, value: Text) -> Result<&Self, QuickFixError>
pub fn remove_text(&mut self) -> Result<&Self, QuickFixError>
pub fn set_encoded_text_len( &mut self, value: EncodedTextLen, ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_text_len(&mut self) -> Result<&Self, QuickFixError>
pub fn set_encoded_text( &mut self, value: EncodedText, ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_text(&mut self) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for OrderCancelRequest
impl Clone for OrderCancelRequest
Source§fn clone(&self) -> OrderCancelRequest
fn clone(&self) -> OrderCancelRequest
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 moreSource§impl Debug for OrderCancelRequest
impl Debug for OrderCancelRequest
Source§impl From<Message> for OrderCancelRequest
impl From<Message> for OrderCancelRequest
Source§impl From<OrderCancelRequest> for Message
impl From<OrderCancelRequest> for Message
Source§fn from(input: OrderCancelRequest) -> Self
fn from(input: OrderCancelRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OrderCancelRequest
impl RefUnwindSafe for OrderCancelRequest
impl !Send for OrderCancelRequest
impl !Sync for OrderCancelRequest
impl Unpin for OrderCancelRequest
impl UnwindSafe for OrderCancelRequest
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