#id #steam-id #steam #parser

steamid-ng

一个易于使用的 steamid 类型,具有解析和渲染 steam2 和 steam3 ID 的功能

9 个版本 (1 个稳定版)

1.0.0 2020 年 10 月 4 日
0.3.4 2020 年 4 月 15 日
0.3.3 2019 年 7 月 13 日
0.3.1 2017 年 11 月 24 日
0.1.1 2017 年 9 月 26 日

#1784解析器实现

Download history 128/week @ 2024-04-07 125/week @ 2024-04-14 158/week @ 2024-04-21 232/week @ 2024-04-28 142/week @ 2024-05-05 168/week @ 2024-05-12 120/week @ 2024-05-19 159/week @ 2024-05-26 133/week @ 2024-06-02 111/week @ 2024-06-09 123/week @ 2024-06-16 127/week @ 2024-06-23 80/week @ 2024-06-30 203/week @ 2024-07-07 264/week @ 2024-07-14 146/week @ 2024-07-21

718 每月下载量
用于 7 crate

MIT 许可证

15KB
300 代码行

steamid-ng crates.io MIT License Docs.rs Travis CI

一个易于使用的 steamid 类型,具有解析和渲染 steam2 和 steam3 ID 的功能。所有初始 PHP 实现的功劳归功于 xPaw;我只是将它移植到 Rust。


lib.rs:

SteamID

steamid-ng crate 提供了一个易于使用的 SteamID 类型,具有解析和渲染 steam2 和 steam3 ID 的功能。它还支持通过 serde 进行序列化和反序列化。

示例

let x = SteamID::from(76561197960287930);
let y = SteamID::from_steam3("[U:1:22202]").unwrap();
let z = SteamID::from_steam2("STEAM_1:0:11101").unwrap();
assert_eq!(x, y);
assert_eq!(y, z);

assert_eq!(u64::from(z), 76561197960287930);
assert_eq!(y.steam2(), "STEAM_1:0:11101");
assert_eq!(x.steam3(), "[U:1:22202]");

assert_eq!(x.account_id(), 22202);
assert_eq!(x.instance(), Instance::Desktop);
assert_eq!(x.account_type(), AccountType::Individual);
assert_eq!(x.universe(), Universe::Public);
// the SteamID type also has `set_{account_id, instance, account_type, universe}` methods,
// which work as you would expect.

请注意,SteamID 类型不执行验证。

依赖项

~3–4.5MB
~87K SLoC