pub trait Value {
// Required methods
fn id(&self) -> &str;
fn schema(&self) -> &str;
fn amount(&self) -> Option<&[f64]>;
fn amount_eur(&self) -> Option<&[f64]>;
fn amount_usd(&self) -> Option<&[f64]>;
fn currency(&self) -> Option<&[String]>;
}Expand description
Trait for FTM schema: Value
Required Methods§
Sourcefn amount_eur(&self) -> Option<&[f64]>
fn amount_eur(&self) -> Option<&[f64]>
Get Amount in EUR property
Sourcefn amount_usd(&self) -> Option<&[f64]>
fn amount_usd(&self) -> Option<&[f64]>
Get Amount in USD property