pub struct RegistrationInstructionsResponse { /* private fields */ }
Implementations§
source§impl RegistrationInstructionsResponse
impl RegistrationInstructionsResponse
pub const MSG_TYPE_BYTES: &'static str = "p"
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 RegistrationInstructionsResponse
impl RegistrationInstructionsResponse
pub fn try_new( regist_id: RegistID, regist_trans_type: RegistTransType, regist_ref_id: RegistRefID, regist_status: RegistStatus ) -> Result<Self, QuickFixError>
source§impl RegistrationInstructionsResponse
impl RegistrationInstructionsResponse
pub fn get_regist_id(&self) -> RegistID
pub fn get_regist_trans_type(&self) -> RegistTransType
pub fn get_regist_ref_id(&self) -> RegistRefID
pub fn get_cl_ord_id(&self) -> Option<ClOrdID>
pub fn clone_group_no_party_i_ds(&self, index: usize) -> Option<NoPartyIDs>
pub fn get_account(&self) -> Option<Account>
pub fn get_acct_id_source(&self) -> Option<AcctIDSource>
pub fn get_regist_status(&self) -> RegistStatus
pub fn get_regist_rej_reason_code(&self) -> Option<RegistRejReasonCode>
pub fn get_regist_rej_reason_text(&self) -> Option<RegistRejReasonText>
pub fn set_regist_id(&mut self, value: RegistID) -> Result<&Self, QuickFixError>
pub fn set_regist_trans_type( &mut self, value: RegistTransType ) -> Result<&Self, QuickFixError>
pub fn set_regist_ref_id( &mut self, value: RegistRefID ) -> Result<&Self, QuickFixError>
pub fn set_cl_ord_id(&mut self, value: ClOrdID) -> Result<&Self, QuickFixError>
pub fn remove_cl_ord_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 remove_account(&mut self) -> 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_regist_status( &mut self, value: RegistStatus ) -> Result<&Self, QuickFixError>
pub fn set_regist_rej_reason_code( &mut self, value: RegistRejReasonCode ) -> Result<&Self, QuickFixError>
pub fn remove_regist_rej_reason_code(&mut self) -> Result<&Self, QuickFixError>
pub fn set_regist_rej_reason_text( &mut self, value: RegistRejReasonText ) -> Result<&Self, QuickFixError>
pub fn remove_regist_rej_reason_text(&mut self) -> Result<&Self, QuickFixError>
Trait Implementations§
source§impl Clone for RegistrationInstructionsResponse
impl Clone for RegistrationInstructionsResponse
source§fn clone(&self) -> RegistrationInstructionsResponse
fn clone(&self) -> RegistrationInstructionsResponse
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 From<RegistrationInstructionsResponse> for Message
impl From<RegistrationInstructionsResponse> for Message
source§fn from(input: RegistrationInstructionsResponse) -> Self
fn from(input: RegistrationInstructionsResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for RegistrationInstructionsResponse
impl !Send for RegistrationInstructionsResponse
impl !Sync for RegistrationInstructionsResponse
impl Unpin for RegistrationInstructionsResponse
impl UnwindSafe for RegistrationInstructionsResponse
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