pub struct NetworkCounterpartySystemStatusRequest { /* private fields */ }
Implementations§
Source§impl NetworkCounterpartySystemStatusRequest
impl NetworkCounterpartySystemStatusRequest
pub const MSG_TYPE_BYTES: &'static str = "BC"
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 NetworkCounterpartySystemStatusRequest
impl NetworkCounterpartySystemStatusRequest
pub fn try_new( network_request_type: NetworkRequestType, network_request_id: NetworkRequestID, ) -> Result<Self, QuickFixError>
Source§impl NetworkCounterpartySystemStatusRequest
impl NetworkCounterpartySystemStatusRequest
pub fn get_network_request_type(&self) -> NetworkRequestType
pub fn get_network_request_id(&self) -> NetworkRequestID
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_request_type( &mut self, value: NetworkRequestType, ) -> Result<&Self, QuickFixError>
pub fn set_network_request_id( &mut self, value: NetworkRequestID, ) -> Result<&Self, QuickFixError>
pub fn add_no_comp_i_ds( &mut self, value: NoCompIDs, ) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for NetworkCounterpartySystemStatusRequest
impl Clone for NetworkCounterpartySystemStatusRequest
Source§fn clone(&self) -> NetworkCounterpartySystemStatusRequest
fn clone(&self) -> NetworkCounterpartySystemStatusRequest
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<NetworkCounterpartySystemStatusRequest> for Message
impl From<NetworkCounterpartySystemStatusRequest> for Message
Source§fn from(input: NetworkCounterpartySystemStatusRequest) -> Self
fn from(input: NetworkCounterpartySystemStatusRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NetworkCounterpartySystemStatusRequest
impl RefUnwindSafe for NetworkCounterpartySystemStatusRequest
impl !Send for NetworkCounterpartySystemStatusRequest
impl !Sync for NetworkCounterpartySystemStatusRequest
impl Unpin for NetworkCounterpartySystemStatusRequest
impl UnwindSafe for NetworkCounterpartySystemStatusRequest
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