2 个版本
使用旧的 Rust 2015
0.1.1 | 2015 年 8 月 24 日 |
---|---|
0.1.0 | 2015 年 8 月 15 日 |
2853 在 Rust 模式 中
每月下载量 15,678
在 8 个crate(3 个直接使用)中使用
2KB
byte_conv
类型和字节切片之间的转换。
示例
use byte_conv::{As as AsBytes,From as FromBytes};
// Convert to bytes
println!("{:?}",258i32.as_bytes());
//Example output: "[2, 1, 0, 0]" or "[0, 0, 1, 2]"
//Convert from bytes
println!("{:?}",unsafe{i32::from_bytes(&[0,0,0,1u8] as &[u8])});
//Example output: "16777216" or "1"