varunsrin / rusty_money

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

Add FromStr impl for &'static Currency #70

Closed darrell-roberts closed 3 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()

See PR #68