3 个版本

0.1.2 2019年7月23日
0.1.1 2019年7月21日
0.1.0 2019年7月19日

值格式化 中排名第 194


fin_iex 中使用

MIT 许可证

2.5MB
52K SLoC

Crate fin_data

这是对 UK Standard industrial classification of economic activities (UK SIC)、US Standard Industrial Classification (US SIC) 代码以及 North American Industry Classification System (NAICS) 的 ClassificationScheme 特性的实现(来自 fin_model crate)。它还为 ISO 提供的 Market Identifier Code (MIC) 数据提供了 MarketRegistry 特性的实现。

模块

示例

fn print_mic_code(code: String) {
    let registry: ISORegistry = ISORegistry::new();
    match registry.get(code.to_string()) {
        None => println!("No value found for code {}", code),
        Some(m) => println!("{}: {} ({})", code, m.description, m.country_code),
    }
}

依赖项

~3–4.5MB
~74K SLoC