Struct quickfix_msg44::ListStrikePrice
source · pub struct ListStrikePrice { /* private fields */ }
Implementations§
source§impl ListStrikePrice
impl ListStrikePrice
pub const MSG_TYPE_BYTES: &'static str = "m"
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 ListStrikePrice
impl ListStrikePrice
pub fn try_new( list_id: ListID, tot_no_strikes: TotNoStrikes ) -> Result<Self, QuickFixError>
source§impl ListStrikePrice
impl ListStrikePrice
pub fn get_list_id(&self) -> ListID
pub fn get_tot_no_strikes(&self) -> TotNoStrikes
pub fn get_last_fragment(&self) -> Option<LastFragment>
pub fn clone_group_no_strikes(&self, index: usize) -> Option<NoStrikes>
pub fn clone_group_no_underlyings(&self, index: usize) -> Option<NoUnderlyings>
pub fn set_list_id(&mut self, value: ListID) -> Result<&Self, QuickFixError>
pub fn set_tot_no_strikes( &mut self, value: TotNoStrikes ) -> 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>
pub fn add_no_strikes( &mut self, value: NoStrikes ) -> Result<&Self, QuickFixError>
pub fn add_no_underlyings( &mut self, value: NoUnderlyings ) -> Result<&Self, QuickFixError>
Trait Implementations§
source§impl Clone for ListStrikePrice
impl Clone for ListStrikePrice
source§fn clone(&self) -> ListStrikePrice
fn clone(&self) -> ListStrikePrice
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 ListStrikePrice
impl Debug for ListStrikePrice
source§impl From<ListStrikePrice> for Message
impl From<ListStrikePrice> for Message
source§fn from(input: ListStrikePrice) -> Self
fn from(input: ListStrikePrice) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for ListStrikePrice
impl !Send for ListStrikePrice
impl !Sync for ListStrikePrice
impl Unpin for ListStrikePrice
impl UnwindSafe for ListStrikePrice
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