文件名称:byteorder:Rust库,用于按大端和小端读写数字
文件大小:26KB
文件格式:ZIP
更新时间:2024-05-25 06:50:56
Rust
字节顺序 此板条箱提供了方便的方法,可以按大端或小端顺序对数字进行编码和解码。 MIT或双重许可。 文献资料 安装 此板条箱可与Cargo一起使用,位于。 像这样将其添加到您的Cargo.toml : [ dependencies ] byteorder = " 1 " 如果要增强现有的Read和Write特征,请导入扩展方法,如下所示: use byteorder :: {ReadBytesExt, WriteBytesExt, BigEndian, LittleEndian}; 例如: use std :: io :: Cursor; use byteorder :: {BigEndian, ReadBytesExt}; let mut rdr = Cursor :: new ( vec! [ 2 , 5 , 3 , 0 ]); // Note that we use ty
【文件预览】:
byteorder-master
----LICENSE-MIT(1KB)
----UNLICENSE(1KB)
----rustfmt.toml(44B)
----Cargo.toml(979B)
----.github()
--------workflows()
----COPYING(126B)
----src()
--------lib.rs(106KB)
--------io.rs(49KB)
----README.md(2KB)
----.gitignore(40B)
----CHANGELOG.md(5KB)
----benches()
--------bench.rs(10KB)