文件名称:isodata的matlab代码博客-iso_currency:Rust的ISO4217货币代码
文件大小:12KB
文件格式:ZIP
更新时间:2024-06-24 01:43:54
系统开源
isodata的matlab代码博客ISO 4217 货币代码 这个 crate 提供了一个代表所有 ISO 4217 货币的枚举,并具有在数字和字符代码之间转换的简单方法、使用每种货币的地区列表、符号和货币的英文名称。 这方面的数据来自 Country枚举是从唯一的依赖项 - 板条箱重新导出的。 特征 crate 只有一个可选功能 - with-serde 。 如果您需要使用serde序列化/反序列化支持,您应该将该功能包含在您对iso_currency的依赖中,例如: iso_currency = { version = " 0.4.1 " , features = [ " with-serde " ] } 例子 use iso_currency :: {Currency, Country}; assert_eq! (Currency :: EUR. name (), "Euro" ); assert_eq! (Currency :: EUR. numeric (), 978 ); assert_eq! (Currency :: from_numeric ( 978 ), Some
【文件预览】:
iso_currency-master
----Cargo.toml(595B)
----.github()
--------workflows()
----isodata.tsv(7KB)
----src()
--------lib.rs(5KB)
----build.rs(12KB)
----LICENSE(1KB)
----README.md(2KB)
----.gitignore(30B)