pub struct SecurityTypes { /* private fields */ }
Implementations§
Source§impl SecurityTypes
impl SecurityTypes
pub const MSG_TYPE_BYTES: &'static str = "w"
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 SecurityTypes
impl SecurityTypes
pub fn try_new( security_req_id: SecurityReqID, security_response_id: SecurityResponseID, security_response_type: SecurityResponseType, ) -> Result<Self, QuickFixError>
Source§impl SecurityTypes
impl SecurityTypes
pub fn get_security_req_id(&self) -> SecurityReqID
pub fn get_security_response_id(&self) -> SecurityResponseID
pub fn get_security_response_type(&self) -> SecurityResponseType
pub fn get_total_num_security_types(&self) -> Option<TotalNumSecurityTypes>
pub fn no_security_types_len(&self) -> usize
pub fn clone_group_no_security_types( &self, index: usize, ) -> Option<NoSecurityTypes>
pub fn iter_no_security_types(&self) -> GroupIterator<'_, Self, NoSecurityTypes> ⓘ
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_trading_session_id(&self) -> Option<TradingSessionID>
pub fn get_trading_session_sub_id(&self) -> Option<TradingSessionSubID>
pub fn get_subscription_request_type(&self) -> Option<SubscriptionRequestType>
pub fn set_security_req_id( &mut self, value: SecurityReqID, ) -> Result<&Self, QuickFixError>
pub fn set_security_response_id( &mut self, value: SecurityResponseID, ) -> Result<&Self, QuickFixError>
pub fn set_security_response_type( &mut self, value: SecurityResponseType, ) -> Result<&Self, QuickFixError>
pub fn set_total_num_security_types( &mut self, value: TotalNumSecurityTypes, ) -> Result<&Self, QuickFixError>
pub fn remove_total_num_security_types( &mut self, ) -> Result<&Self, QuickFixError>
pub fn add_no_security_types( &mut self, value: NoSecurityTypes, ) -> 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_trading_session_id( &mut self, value: TradingSessionID, ) -> Result<&Self, QuickFixError>
pub fn remove_trading_session_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_trading_session_sub_id( &mut self, value: TradingSessionSubID, ) -> Result<&Self, QuickFixError>
pub fn remove_trading_session_sub_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_subscription_request_type( &mut self, value: SubscriptionRequestType, ) -> Result<&Self, QuickFixError>
pub fn remove_subscription_request_type( &mut self, ) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for SecurityTypes
impl Clone for SecurityTypes
Source§fn clone(&self) -> SecurityTypes
fn clone(&self) -> SecurityTypes
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 SecurityTypes
impl Debug for SecurityTypes
Source§impl From<Message> for SecurityTypes
impl From<Message> for SecurityTypes
Source§impl From<SecurityTypes> for Message
impl From<SecurityTypes> for Message
Source§fn from(input: SecurityTypes) -> Self
fn from(input: SecurityTypes) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SecurityTypes
impl RefUnwindSafe for SecurityTypes
impl !Send for SecurityTypes
impl !Sync for SecurityTypes
impl Unpin for SecurityTypes
impl UnwindSafe for SecurityTypes
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