pub struct NoAllocs { /* private fields */ }
Implementations§
Source§impl NoAllocs
impl NoAllocs
pub fn get_alloc_account(&self) -> Option<AllocAccount>
pub fn get_alloc_acct_id_source(&self) -> Option<AllocAcctIDSource>
pub fn get_alloc_price(&self) -> Option<AllocPrice>
pub fn get_individual_alloc_id(&self) -> Option<IndividualAllocID>
pub fn get_individual_alloc_rej_code(&self) -> Option<IndividualAllocRejCode>
pub fn get_alloc_text(&self) -> Option<AllocText>
pub fn get_encoded_alloc_text_len(&self) -> Option<EncodedAllocTextLen>
pub fn get_encoded_alloc_text(&self) -> Option<EncodedAllocText>
pub fn set_alloc_account( &mut self, value: AllocAccount, ) -> Result<&Self, QuickFixError>
pub fn remove_alloc_account(&mut self) -> Result<&Self, QuickFixError>
pub fn set_alloc_acct_id_source( &mut self, value: AllocAcctIDSource, ) -> Result<&Self, QuickFixError>
pub fn remove_alloc_acct_id_source(&mut self) -> Result<&Self, QuickFixError>
pub fn set_alloc_price( &mut self, value: AllocPrice, ) -> Result<&Self, QuickFixError>
pub fn remove_alloc_price(&mut self) -> Result<&Self, QuickFixError>
pub fn set_individual_alloc_id( &mut self, value: IndividualAllocID, ) -> Result<&Self, QuickFixError>
pub fn remove_individual_alloc_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_individual_alloc_rej_code( &mut self, value: IndividualAllocRejCode, ) -> Result<&Self, QuickFixError>
pub fn remove_individual_alloc_rej_code( &mut self, ) -> Result<&Self, QuickFixError>
pub fn set_alloc_text( &mut self, value: AllocText, ) -> Result<&Self, QuickFixError>
pub fn remove_alloc_text(&mut self) -> Result<&Self, QuickFixError>
pub fn set_encoded_alloc_text_len( &mut self, value: EncodedAllocTextLen, ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_alloc_text_len(&mut self) -> Result<&Self, QuickFixError>
pub fn set_encoded_alloc_text( &mut self, value: EncodedAllocText, ) -> Result<&Self, QuickFixError>
pub fn remove_encoded_alloc_text(&mut self) -> Result<&Self, QuickFixError>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NoAllocs
impl RefUnwindSafe for NoAllocs
impl !Send for NoAllocs
impl !Sync for NoAllocs
impl Unpin for NoAllocs
impl UnwindSafe for NoAllocs
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