1 个不稳定版本
0.1.0 | 2023年5月26日 |
---|
#7 在 #bgpkit
5KB
asnames-rs
简单自治系统(AS)名称和国家查找的Rust库
数据源
数据定义
#[derive(Debug, Clone)]
pub struct AsName {
pub asn: u32,
pub name: String,
pub country: String,
}
用法
use std::collections::HashMap;
use asnames::{AsName, load_asnames};
let asnames: HashMap<u32, AsName> = load_asnames().unwrap();
assert_eq!(asnames.get(&3333).unwrap().name, "RIPE-NCC-AS Reseaux IP Europeens Network Coordination Centre (RIPE NCC)");
assert_eq!(asnames.get(&400644).unwrap().name, "BGPKIT-LLC");
assert_eq!(asnames.get(&400644).unwrap().country, "US");
lib.rs
:
asnames-rs是一个用于简单自治系统(AS)名称和国家查找的库
数据源
数据结构
#[derive(Debug, Clone)]
pub struct AsName {
pub asn: u32,
pub name: String,
pub country: String,
}
示例
use std::collections::HashMap;
use asnames::{AsName, load_asnames};
let asnames: HashMap<u32, AsName> = load_asnames().unwrap();
assert_eq!(asnames.get(&3333).unwrap().name, "RIPE-NCC-AS Reseaux IP Europeens Network Coordination Centre (RIPE NCC)");
assert_eq!(asnames.get(&400644).unwrap().name, "BGPKIT-LLC");
assert_eq!(asnames.get(&400644).unwrap().country, "US");
依赖关系
~4–15MB
~229K SLoC