pub struct SecurityList { /* private fields */ }
Implementations§
Source§impl SecurityList
impl SecurityList
pub const MSG_TYPE_BYTES: &'static str = "y"
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 SecurityList
impl SecurityList
pub fn try_new( security_req_id: SecurityReqID, security_response_id: SecurityResponseID, security_request_result: SecurityRequestResult, ) -> Result<Self, QuickFixError>
Source§impl SecurityList
impl SecurityList
pub fn get_security_req_id(&self) -> SecurityReqID
pub fn get_security_response_id(&self) -> SecurityResponseID
pub fn get_security_request_result(&self) -> SecurityRequestResult
pub fn get_last_fragment(&self) -> Option<LastFragment>
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_request_result( &mut self, value: SecurityRequestResult, ) -> Result<&Self, QuickFixError>
pub fn set_last_fragment( &mut self, value: LastFragment, ) -> Result<&Self, QuickFixError>
pub fn remove_last_fragment(&mut self) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for SecurityList
impl Clone for SecurityList
Source§fn clone(&self) -> SecurityList
fn clone(&self) -> SecurityList
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 SecurityList
impl Debug for SecurityList
Source§impl From<Message> for SecurityList
impl From<Message> for SecurityList
Source§impl From<SecurityList> for Message
impl From<SecurityList> for Message
Source§fn from(input: SecurityList) -> Self
fn from(input: SecurityList) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SecurityList
impl RefUnwindSafe for SecurityList
impl !Send for SecurityList
impl !Sync for SecurityList
impl Unpin for SecurityList
impl UnwindSafe for SecurityList
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