pub trait Create {
    fn currency(&self) -> String;
    fn amount(&self) -> f64;
}

Required Methods

Implementors