pub trait ExchangeRateSpecificationTrait {
    // Required methods
    fn get_currency(&self) -> &[CurrencyProperty];
    fn take_currency(&mut self) -> Vec<CurrencyProperty>;
    fn get_current_exchange_rate(&self) -> &[CurrentExchangeRateProperty];
    fn take_current_exchange_rate(&mut self) -> Vec<CurrentExchangeRateProperty>;
    fn get_exchange_rate_spread(&self) -> &[ExchangeRateSpreadProperty];
    fn take_exchange_rate_spread(&mut self) -> Vec<ExchangeRateSpreadProperty>;
}
Expand description

This trait is for properties from https://schema.org/ExchangeRateSpecification.

Required Methods§

Implementors§