varunsrin / rusty_money

Money library for Rust
MIT License
85 stars 32 forks source link

add FromStr impl for &'static Currency #68

Closed darrell-roberts closed 4 months ago

darrell-roberts commented 2 years ago

Would be handy to have this FromStr impl. Usually have data from a database with currency strings and need them parsed into a Currency type.

ex:

let currency: &Currency = "USD".parse().unwrap();