pub struct NotionalAmount {
pub amount: String,
}Expand description
Notional order amount (dollar-based).
Fields§
§amount: StringThe dollar amount.
Implementations§
Source§impl NotionalAmount
impl NotionalAmount
Sourcepub fn new(amount: &str) -> NotionalAmount
pub fn new(amount: &str) -> NotionalAmount
Create new notional amount.
Sourcepub fn from_f64(amount: f64) -> Option<NotionalAmount>
pub fn from_f64(amount: f64) -> Option<NotionalAmount>
Create from f64.
Trait Implementations§
Source§impl Clone for NotionalAmount
impl Clone for NotionalAmount
Source§fn clone(&self) -> NotionalAmount
fn clone(&self) -> NotionalAmount
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 moreSource§impl Debug for NotionalAmount
impl Debug for NotionalAmount
Source§impl<'de> Deserialize<'de> for NotionalAmount
impl<'de> Deserialize<'de> for NotionalAmount
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<NotionalAmount, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<NotionalAmount, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for NotionalAmount
impl Serialize for NotionalAmount
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for NotionalAmount
impl RefUnwindSafe for NotionalAmount
impl Send for NotionalAmount
impl Sync for NotionalAmount
impl Unpin for NotionalAmount
impl UnwindSafe for NotionalAmount
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