pub struct PositionMaintenanceRequest { /* private fields */ }
Implementations§
source§impl PositionMaintenanceRequest
impl PositionMaintenanceRequest
pub const MSG_TYPE_BYTES: &'static str = "AL"
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 PositionMaintenanceRequest
impl PositionMaintenanceRequest
pub fn try_new( pos_req_id: PosReqID, pos_trans_type: PosTransType, pos_maint_action: PosMaintAction, clearing_business_date: ClearingBusinessDate, account: Account, account_type: AccountType, transact_time: TransactTime ) -> Result<Self, QuickFixError>
source§impl PositionMaintenanceRequest
impl PositionMaintenanceRequest
pub fn get_pos_req_id(&self) -> PosReqID
pub fn get_pos_trans_type(&self) -> PosTransType
pub fn get_pos_maint_action(&self) -> PosMaintAction
pub fn get_orig_pos_req_ref_id(&self) -> Option<OrigPosReqRefID>
pub fn get_pos_maint_rpt_ref_id(&self) -> Option<PosMaintRptRefID>
pub fn get_clearing_business_date(&self) -> ClearingBusinessDate
pub fn get_settl_sess_id(&self) -> Option<SettlSessID>
pub fn get_settl_sess_sub_id(&self) -> Option<SettlSessSubID>
pub fn clone_group_no_party_i_ds(&self, index: usize) -> Option<NoPartyIDs>
pub fn get_account(&self) -> Account
pub fn get_acct_id_source(&self) -> Option<AcctIDSource>
pub fn get_account_type(&self) -> AccountType
pub fn get_symbol(&self) -> Option<Symbol>
pub fn get_symbol_sfx(&self) -> Option<SymbolSfx>
pub fn get_security_id(&self) -> Option<SecurityID>
pub fn get_security_id_source(&self) -> Option<SecurityIDSource>
pub fn clone_group_no_security_alt_id( &self, index: usize ) -> Option<NoSecurityAltID>
pub fn get_product(&self) -> Option<Product>
pub fn get_cfi_code(&self) -> Option<CFICode>
pub fn get_security_type(&self) -> Option<SecurityType>
pub fn get_security_sub_type(&self) -> Option<SecuritySubType>
pub fn get_maturity_month_year(&self) -> Option<MaturityMonthYear>
pub fn get_maturity_date(&self) -> Option<MaturityDate>
pub fn get_put_or_call(&self) -> Option<PutOrCall>
pub fn get_coupon_payment_date(&self) -> Option<CouponPaymentDate>
pub fn get_issue_date(&self) -> Option<IssueDate>
pub fn get_repo_collateral_security_type( &self ) -> Option<RepoCollateralSecurityType>
pub fn get_repurchase_term(&self) -> Option<RepurchaseTerm>
pub fn get_repurchase_rate(&self) -> Option<RepurchaseRate>
pub fn get_factor(&self) -> Option<Factor>
pub fn get_credit_rating(&self) -> Option<CreditRating>
pub fn get_instr_registry(&self) -> Option<InstrRegistry>
pub fn get_country_of_issue(&self) -> Option<CountryOfIssue>
pub fn get_state_or_province_of_issue(&self) -> Option<StateOrProvinceOfIssue>
pub fn get_locale_of_issue(&self) -> Option<LocaleOfIssue>
pub fn get_redemption_date(&self) -> Option<RedemptionDate>
pub fn get_strike_price(&self) -> Option<StrikePrice>
pub fn get_strike_currency(&self) -> Option<StrikeCurrency>
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_pool(&self) -> Option<Pool>
pub fn get_contract_settl_month(&self) -> Option<ContractSettlMonth>
pub fn get_cp_program(&self) -> Option<CPProgram>
pub fn get_cp_reg_type(&self) -> Option<CPRegType>
pub fn clone_group_no_events(&self, index: usize) -> Option<NoEvents>
pub fn get_dated_date(&self) -> Option<DatedDate>
pub fn get_interest_accrual_date(&self) -> Option<InterestAccrualDate>
pub fn get_currency(&self) -> Option<Currency>
pub fn clone_group_no_legs(&self, index: usize) -> Option<NoLegs>
pub fn clone_group_no_underlyings(&self, index: usize) -> Option<NoUnderlyings>
pub fn clone_group_no_trading_sessions( &self, index: usize ) -> Option<NoTradingSessions>
pub fn get_transact_time(&self) -> TransactTime
pub fn clone_group_no_positions(&self, index: usize) -> Option<NoPositions>
pub fn get_adjustment_type(&self) -> Option<AdjustmentType>
pub fn get_contrary_instruction_indicator( &self ) -> Option<ContraryInstructionIndicator>
pub fn get_prior_spread_indicator(&self) -> Option<PriorSpreadIndicator>
pub fn get_threshold_amount(&self) -> Option<ThresholdAmount>
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_pos_req_id( &mut self, value: PosReqID ) -> Result<&Self, QuickFixError>
pub fn set_pos_trans_type( &mut self, value: PosTransType ) -> Result<&Self, QuickFixError>
pub fn set_pos_maint_action( &mut self, value: PosMaintAction ) -> Result<&Self, QuickFixError>
pub fn set_orig_pos_req_ref_id( &mut self, value: OrigPosReqRefID ) -> Result<&Self, QuickFixError>
pub fn remove_orig_pos_req_ref_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_pos_maint_rpt_ref_id( &mut self, value: PosMaintRptRefID ) -> Result<&Self, QuickFixError>
pub fn remove_pos_maint_rpt_ref_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_clearing_business_date( &mut self, value: ClearingBusinessDate ) -> Result<&Self, QuickFixError>
pub fn set_settl_sess_id( &mut self, value: SettlSessID ) -> Result<&Self, QuickFixError>
pub fn remove_settl_sess_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_settl_sess_sub_id( &mut self, value: SettlSessSubID ) -> Result<&Self, QuickFixError>
pub fn remove_settl_sess_sub_id(&mut self) -> Result<&Self, QuickFixError>
pub fn add_no_party_i_ds( &mut self, value: NoPartyIDs ) -> Result<&Self, QuickFixError>
pub fn set_account(&mut self, value: Account) -> Result<&Self, QuickFixError>
pub fn set_acct_id_source( &mut self, value: AcctIDSource ) -> Result<&Self, QuickFixError>
pub fn remove_acct_id_source(&mut self) -> Result<&Self, QuickFixError>
pub fn set_account_type( &mut self, value: AccountType ) -> Result<&Self, QuickFixError>
pub fn set_symbol(&mut self, value: Symbol) -> Result<&Self, QuickFixError>
pub fn remove_symbol(&mut self) -> 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_security_id_source( &mut self, value: SecurityIDSource ) -> Result<&Self, QuickFixError>
pub fn remove_security_id_source(&mut self) -> Result<&Self, QuickFixError>
pub fn add_no_security_alt_id( &mut self, value: NoSecurityAltID ) -> Result<&Self, QuickFixError>
pub fn set_product(&mut self, value: Product) -> Result<&Self, QuickFixError>
pub fn remove_product(&mut self) -> Result<&Self, QuickFixError>
pub fn set_cfi_code(&mut self, value: CFICode) -> Result<&Self, QuickFixError>
pub fn remove_cfi_code(&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_security_sub_type( &mut self, value: SecuritySubType ) -> Result<&Self, QuickFixError>
pub fn remove_security_sub_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_date( &mut self, value: MaturityDate ) -> Result<&Self, QuickFixError>
pub fn remove_maturity_date(&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_coupon_payment_date( &mut self, value: CouponPaymentDate ) -> Result<&Self, QuickFixError>
pub fn remove_coupon_payment_date(&mut self) -> Result<&Self, QuickFixError>
pub fn set_issue_date( &mut self, value: IssueDate ) -> Result<&Self, QuickFixError>
pub fn remove_issue_date(&mut self) -> Result<&Self, QuickFixError>
pub fn set_repo_collateral_security_type( &mut self, value: RepoCollateralSecurityType ) -> Result<&Self, QuickFixError>
pub fn remove_repo_collateral_security_type( &mut self ) -> Result<&Self, QuickFixError>
pub fn set_repurchase_term( &mut self, value: RepurchaseTerm ) -> Result<&Self, QuickFixError>
pub fn remove_repurchase_term(&mut self) -> Result<&Self, QuickFixError>
pub fn set_repurchase_rate( &mut self, value: RepurchaseRate ) -> Result<&Self, QuickFixError>
pub fn remove_repurchase_rate(&mut self) -> Result<&Self, QuickFixError>
pub fn set_factor(&mut self, value: Factor) -> Result<&Self, QuickFixError>
pub fn remove_factor(&mut self) -> Result<&Self, QuickFixError>
pub fn set_credit_rating( &mut self, value: CreditRating ) -> Result<&Self, QuickFixError>
pub fn remove_credit_rating(&mut self) -> Result<&Self, QuickFixError>
pub fn set_instr_registry( &mut self, value: InstrRegistry ) -> Result<&Self, QuickFixError>
pub fn remove_instr_registry(&mut self) -> Result<&Self, QuickFixError>
pub fn set_country_of_issue( &mut self, value: CountryOfIssue ) -> Result<&Self, QuickFixError>
pub fn remove_country_of_issue(&mut self) -> Result<&Self, QuickFixError>
pub fn set_state_or_province_of_issue( &mut self, value: StateOrProvinceOfIssue ) -> Result<&Self, QuickFixError>
pub fn remove_state_or_province_of_issue( &mut self ) -> Result<&Self, QuickFixError>
pub fn set_locale_of_issue( &mut self, value: LocaleOfIssue ) -> Result<&Self, QuickFixError>
pub fn remove_locale_of_issue(&mut self) -> Result<&Self, QuickFixError>
pub fn set_redemption_date( &mut self, value: RedemptionDate ) -> Result<&Self, QuickFixError>
pub fn remove_redemption_date(&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_strike_currency( &mut self, value: StrikeCurrency ) -> Result<&Self, QuickFixError>
pub fn remove_strike_currency(&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_pool(&mut self, value: Pool) -> Result<&Self, QuickFixError>
pub fn remove_pool(&mut self) -> Result<&Self, QuickFixError>
pub fn set_contract_settl_month( &mut self, value: ContractSettlMonth ) -> Result<&Self, QuickFixError>
pub fn remove_contract_settl_month(&mut self) -> Result<&Self, QuickFixError>
pub fn set_cp_program( &mut self, value: CPProgram ) -> Result<&Self, QuickFixError>
pub fn remove_cp_program(&mut self) -> Result<&Self, QuickFixError>
pub fn set_cp_reg_type( &mut self, value: CPRegType ) -> Result<&Self, QuickFixError>
pub fn remove_cp_reg_type(&mut self) -> Result<&Self, QuickFixError>
pub fn add_no_events(&mut self, value: NoEvents) -> Result<&Self, QuickFixError>
pub fn set_dated_date( &mut self, value: DatedDate ) -> Result<&Self, QuickFixError>
pub fn remove_dated_date(&mut self) -> Result<&Self, QuickFixError>
pub fn set_interest_accrual_date( &mut self, value: InterestAccrualDate ) -> Result<&Self, QuickFixError>
pub fn remove_interest_accrual_date(&mut self) -> Result<&Self, QuickFixError>
pub fn set_currency(&mut self, value: Currency) -> Result<&Self, QuickFixError>
pub fn remove_currency(&mut self) -> Result<&Self, QuickFixError>
pub fn add_no_legs(&mut self, value: NoLegs) -> Result<&Self, QuickFixError>
pub fn add_no_underlyings( &mut self, value: NoUnderlyings ) -> Result<&Self, QuickFixError>
pub fn add_no_trading_sessions( &mut self, value: NoTradingSessions ) -> Result<&Self, QuickFixError>
pub fn set_transact_time( &mut self, value: TransactTime ) -> Result<&Self, QuickFixError>
pub fn add_no_positions( &mut self, value: NoPositions ) -> Result<&Self, QuickFixError>
pub fn set_adjustment_type( &mut self, value: AdjustmentType ) -> Result<&Self, QuickFixError>
pub fn remove_adjustment_type(&mut self) -> Result<&Self, QuickFixError>
pub fn set_contrary_instruction_indicator( &mut self, value: ContraryInstructionIndicator ) -> Result<&Self, QuickFixError>
pub fn remove_contrary_instruction_indicator( &mut self ) -> Result<&Self, QuickFixError>
pub fn set_prior_spread_indicator( &mut self, value: PriorSpreadIndicator ) -> Result<&Self, QuickFixError>
pub fn remove_prior_spread_indicator(&mut self) -> Result<&Self, QuickFixError>
pub fn set_threshold_amount( &mut self, value: ThresholdAmount ) -> Result<&Self, QuickFixError>
pub fn remove_threshold_amount(&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 PositionMaintenanceRequest
impl Clone for PositionMaintenanceRequest
source§fn clone(&self) -> PositionMaintenanceRequest
fn clone(&self) -> PositionMaintenanceRequest
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 PositionMaintenanceRequest
impl Debug for PositionMaintenanceRequest
source§impl From<Message> for PositionMaintenanceRequest
impl From<Message> for PositionMaintenanceRequest
source§impl From<PositionMaintenanceRequest> for Message
impl From<PositionMaintenanceRequest> for Message
source§fn from(input: PositionMaintenanceRequest) -> Self
fn from(input: PositionMaintenanceRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for PositionMaintenanceRequest
impl !Send for PositionMaintenanceRequest
impl !Sync for PositionMaintenanceRequest
impl Unpin for PositionMaintenanceRequest
impl UnwindSafe for PositionMaintenanceRequest
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