pub trait ExchangeRate {
    // Required method
    fn invert(self) -> Self;
}

Required Methods§

source

fn invert(self) -> Self

Implementations on Foreign Types§

source§

impl ExchangeRate for f64

source§

fn invert(self) -> Self

Implementors§