pub struct BidResponse { /* private fields */ }
Implementations§
Source§impl BidResponse
impl BidResponse
pub const MSG_TYPE_BYTES: &'static str = "l"
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 BidResponse
impl BidResponse
pub fn try_new() -> Result<Self, QuickFixError>
Source§impl BidResponse
impl BidResponse
pub fn get_bid_id(&self) -> Option<BidID>
pub fn get_client_bid_id(&self) -> Option<ClientBidID>
pub fn no_bid_components_len(&self) -> usize
pub fn clone_group_no_bid_components( &self, index: usize, ) -> Option<NoBidComponents>
pub fn iter_no_bid_components(&self) -> GroupIterator<'_, Self, NoBidComponents> ⓘ
pub fn set_bid_id(&mut self, value: BidID) -> Result<&Self, QuickFixError>
pub fn remove_bid_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_client_bid_id( &mut self, value: ClientBidID, ) -> Result<&Self, QuickFixError>
pub fn remove_client_bid_id(&mut self) -> Result<&Self, QuickFixError>
pub fn add_no_bid_components( &mut self, value: NoBidComponents, ) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for BidResponse
impl Clone for BidResponse
Source§fn clone(&self) -> BidResponse
fn clone(&self) -> BidResponse
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 BidResponse
impl Debug for BidResponse
Source§impl From<BidResponse> for Message
impl From<BidResponse> for Message
Source§fn from(input: BidResponse) -> Self
fn from(input: BidResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BidResponse
impl RefUnwindSafe for BidResponse
impl !Send for BidResponse
impl !Sync for BidResponse
impl Unpin for BidResponse
impl UnwindSafe for BidResponse
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