用 Rust 编写的闪电般快的解码器
由 Jian Chen 编写
59 在 #number
2KB
lib.rs
此库提供了一种快速且高效的方法,可以从 Vec<u8> 中解码各种类型。它通过避免不必要的分配和复制来实现高性能。
Vec<u8>
只需运行 cargo add decoder 将此软件包添加到您的项目中,然后在您的代码中包含相关的特质,例如:use decoder::number::Decode;
cargo add decoder
use decoder::number::Decode;
查看相关模块。