pub struct NoUnderlyingAmounts { /* private fields */ }Implementations§
Source§impl NoUnderlyingAmounts
impl NoUnderlyingAmounts
pub fn get_underlying_pay_amount(&self) -> Option<UnderlyingPayAmount>
pub fn get_underlying_collect_amount(&self) -> Option<UnderlyingCollectAmount>
pub fn get_underlying_settlement_date(&self) -> Option<UnderlyingSettlementDate>
pub fn get_underlying_settlement_status( &self, ) -> Option<UnderlyingSettlementStatus>
pub fn set_underlying_pay_amount( &mut self, value: UnderlyingPayAmount, ) -> Result<&Self, QuickFixError>
pub fn remove_underlying_pay_amount(&mut self) -> Result<&Self, QuickFixError>
pub fn set_underlying_collect_amount( &mut self, value: UnderlyingCollectAmount, ) -> Result<&Self, QuickFixError>
pub fn remove_underlying_collect_amount( &mut self, ) -> Result<&Self, QuickFixError>
pub fn set_underlying_settlement_date( &mut self, value: UnderlyingSettlementDate, ) -> Result<&Self, QuickFixError>
pub fn remove_underlying_settlement_date( &mut self, ) -> Result<&Self, QuickFixError>
pub fn set_underlying_settlement_status( &mut self, value: UnderlyingSettlementStatus, ) -> Result<&Self, QuickFixError>
pub fn remove_underlying_settlement_status( &mut self, ) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for NoUnderlyingAmounts
impl Clone for NoUnderlyingAmounts
Source§fn clone(&self) -> NoUnderlyingAmounts
fn clone(&self) -> NoUnderlyingAmounts
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for NoUnderlyingAmounts
impl RefUnwindSafe for NoUnderlyingAmounts
impl !Send for NoUnderlyingAmounts
impl !Sync for NoUnderlyingAmounts
impl Unpin for NoUnderlyingAmounts
impl UnwindSafe for NoUnderlyingAmounts
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