Struct quickfix_msg44::SettlementInstructions
source · pub struct SettlementInstructions { /* private fields */ }
Implementations§
source§impl SettlementInstructions
impl SettlementInstructions
pub const MSG_TYPE_BYTES: &'static str = "T"
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 SettlementInstructions
impl SettlementInstructions
pub fn try_new( settl_inst_msg_id: SettlInstMsgID, settl_inst_mode: SettlInstMode, transact_time: TransactTime ) -> Result<Self, QuickFixError>
source§impl SettlementInstructions
impl SettlementInstructions
pub fn get_settl_inst_msg_id(&self) -> SettlInstMsgID
pub fn get_settl_inst_req_id(&self) -> Option<SettlInstReqID>
pub fn get_settl_inst_mode(&self) -> SettlInstMode
pub fn get_settl_inst_req_rej_code(&self) -> Option<SettlInstReqRejCode>
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 get_cl_ord_id(&self) -> Option<ClOrdID>
pub fn get_transact_time(&self) -> TransactTime
pub fn clone_group_no_settl_inst(&self, index: usize) -> Option<NoSettlInst>
pub fn set_settl_inst_msg_id( &mut self, value: SettlInstMsgID ) -> Result<&Self, QuickFixError>
pub fn set_settl_inst_req_id( &mut self, value: SettlInstReqID ) -> Result<&Self, QuickFixError>
pub fn remove_settl_inst_req_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_settl_inst_mode( &mut self, value: SettlInstMode ) -> Result<&Self, QuickFixError>
pub fn set_settl_inst_req_rej_code( &mut self, value: SettlInstReqRejCode ) -> Result<&Self, QuickFixError>
pub fn remove_settl_inst_req_rej_code(&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>
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 set_transact_time( &mut self, value: TransactTime ) -> Result<&Self, QuickFixError>
pub fn add_no_settl_inst( &mut self, value: NoSettlInst ) -> Result<&Self, QuickFixError>
Trait Implementations§
source§impl Clone for SettlementInstructions
impl Clone for SettlementInstructions
source§fn clone(&self) -> SettlementInstructions
fn clone(&self) -> SettlementInstructions
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 SettlementInstructions
impl Debug for SettlementInstructions
source§impl From<Message> for SettlementInstructions
impl From<Message> for SettlementInstructions
source§impl From<SettlementInstructions> for Message
impl From<SettlementInstructions> for Message
source§fn from(input: SettlementInstructions) -> Self
fn from(input: SettlementInstructions) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for SettlementInstructions
impl !Send for SettlementInstructions
impl !Sync for SettlementInstructions
impl Unpin for SettlementInstructions
impl UnwindSafe for SettlementInstructions
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