rust:IPGen规范在Rust中的正式实施 源码
Rust IPGen库 在正式实施 IPGen是一个用于在生成唯一且可复制的IP地址的库。 该库生成的IP地址是非常唯一的(取决于您的子网前缀),但是,如果将其传递给相同的输入,它将产生相同的IP地址。 您也可以使用我们的生成IP地址。 入门 添加ipgen在你的依赖Cargo.toml文件。 [ dependencies ] ipgen = " 0.0.4 " 在程序中使用它,如下所示: extern crate ipgen; fn main () { // Compute subnet ID let subnet = ipgen :: subnet ( "App 1" ); assert_eq! ( "ba3d" . to_string (), subnet); // Or compute an IPv6 address // Note you can a
文件列表
rust-main.zip
(预估有个8文件)
rust-main
.travis.yml
92B
LICENSE-APACHE
11KB
tests
integration.rs
145B
LICENSE
1KB
src
lib.rs
6KB
Cargo.toml
391B
.gitignore
28B
暂无评论