pub struct NetworkCounterpartySystemStatusResponse { /* private fields */ }
Implementations§
Source§impl NetworkCounterpartySystemStatusResponse
impl NetworkCounterpartySystemStatusResponse
pub const MSG_TYPE_BYTES: &'static str = "BD"
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 NetworkCounterpartySystemStatusResponse
impl NetworkCounterpartySystemStatusResponse
pub fn try_new( network_status_response_type: NetworkStatusResponseType, network_response_id: NetworkResponseID, ) -> Result<Self, QuickFixError>
Source§impl NetworkCounterpartySystemStatusResponse
impl NetworkCounterpartySystemStatusResponse
pub fn get_network_status_response_type(&self) -> NetworkStatusResponseType
pub fn get_network_request_id(&self) -> Option<NetworkRequestID>
pub fn get_network_response_id(&self) -> NetworkResponseID
pub fn get_last_network_response_id(&self) -> Option<LastNetworkResponseID>
pub fn no_comp_i_ds_len(&self) -> usize
pub fn clone_group_no_comp_i_ds(&self, index: usize) -> Option<NoCompIDs>
pub fn iter_no_comp_i_ds(&self) -> GroupIterator<'_, Self, NoCompIDs> ⓘ
pub fn set_network_status_response_type( &mut self, value: NetworkStatusResponseType, ) -> Result<&Self, QuickFixError>
pub fn set_network_request_id( &mut self, value: NetworkRequestID, ) -> Result<&Self, QuickFixError>
pub fn remove_network_request_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_network_response_id( &mut self, value: NetworkResponseID, ) -> Result<&Self, QuickFixError>
pub fn set_last_network_response_id( &mut self, value: LastNetworkResponseID, ) -> Result<&Self, QuickFixError>
pub fn remove_last_network_response_id( &mut self, ) -> Result<&Self, QuickFixError>
pub fn add_no_comp_i_ds( &mut self, value: NoCompIDs, ) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for NetworkCounterpartySystemStatusResponse
impl Clone for NetworkCounterpartySystemStatusResponse
Source§fn clone(&self) -> NetworkCounterpartySystemStatusResponse
fn clone(&self) -> NetworkCounterpartySystemStatusResponse
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<NetworkCounterpartySystemStatusResponse> for Message
impl From<NetworkCounterpartySystemStatusResponse> for Message
Source§fn from(input: NetworkCounterpartySystemStatusResponse) -> Self
fn from(input: NetworkCounterpartySystemStatusResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NetworkCounterpartySystemStatusResponse
impl RefUnwindSafe for NetworkCounterpartySystemStatusResponse
impl !Send for NetworkCounterpartySystemStatusResponse
impl !Sync for NetworkCounterpartySystemStatusResponse
impl Unpin for NetworkCounterpartySystemStatusResponse
impl UnwindSafe for NetworkCounterpartySystemStatusResponse
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