pub struct SecurityListUpdateReport { /* private fields */ }
Implementations§
Source§impl SecurityListUpdateReport
impl SecurityListUpdateReport
pub const MSG_TYPE_BYTES: &'static str = "BK"
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 SecurityListUpdateReport
impl SecurityListUpdateReport
pub fn try_new() -> Result<Self, QuickFixError>
Source§impl SecurityListUpdateReport
impl SecurityListUpdateReport
pub fn get_security_report_id(&self) -> Option<SecurityReportID>
pub fn get_security_req_id(&self) -> Option<SecurityReqID>
pub fn get_security_response_id(&self) -> Option<SecurityResponseID>
pub fn get_security_request_result(&self) -> Option<SecurityRequestResult>
pub fn get_clearing_business_date(&self) -> Option<ClearingBusinessDate>
pub fn get_security_update_action(&self) -> Option<SecurityUpdateAction>
pub fn get_corporate_action(&self) -> Option<CorporateAction>
pub fn get_last_fragment(&self) -> Option<LastFragment>
pub fn set_security_report_id( &mut self, value: SecurityReportID, ) -> Result<&Self, QuickFixError>
pub fn remove_security_report_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_security_req_id( &mut self, value: SecurityReqID, ) -> Result<&Self, QuickFixError>
pub fn remove_security_req_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_security_response_id( &mut self, value: SecurityResponseID, ) -> Result<&Self, QuickFixError>
pub fn remove_security_response_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_security_request_result( &mut self, value: SecurityRequestResult, ) -> Result<&Self, QuickFixError>
pub fn remove_security_request_result(&mut self) -> Result<&Self, QuickFixError>
pub fn set_clearing_business_date( &mut self, value: ClearingBusinessDate, ) -> Result<&Self, QuickFixError>
pub fn remove_clearing_business_date(&mut self) -> Result<&Self, QuickFixError>
pub fn set_security_update_action( &mut self, value: SecurityUpdateAction, ) -> Result<&Self, QuickFixError>
pub fn remove_security_update_action(&mut self) -> Result<&Self, QuickFixError>
pub fn set_corporate_action( &mut self, value: CorporateAction, ) -> Result<&Self, QuickFixError>
pub fn remove_corporate_action(&mut self) -> 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 SecurityListUpdateReport
impl Clone for SecurityListUpdateReport
Source§fn clone(&self) -> SecurityListUpdateReport
fn clone(&self) -> SecurityListUpdateReport
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 SecurityListUpdateReport
impl Debug for SecurityListUpdateReport
Source§impl From<Message> for SecurityListUpdateReport
impl From<Message> for SecurityListUpdateReport
Source§impl From<SecurityListUpdateReport> for Message
impl From<SecurityListUpdateReport> for Message
Source§fn from(input: SecurityListUpdateReport) -> Self
fn from(input: SecurityListUpdateReport) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SecurityListUpdateReport
impl RefUnwindSafe for SecurityListUpdateReport
impl !Send for SecurityListUpdateReport
impl !Sync for SecurityListUpdateReport
impl Unpin for SecurityListUpdateReport
impl UnwindSafe for SecurityListUpdateReport
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