1个不稳定版本
使用旧的Rust 2015
0.1.0 | 2018年1月6日 |
---|
#23 在 #arrays
6KB
111 行
字节数组字面量
此crate提供了hb!
宏,用于在编译时从十六进制字节字面量创建固定大小的字节数组。
#![feature(proc_macro)]
extern crate hexbytes;
use hexbytes::hb;
fn main() {
let bytes = hb!("0bad abba cd");
}
lib.rs
:
字节数组字面量
此crate提供了hb!
宏,用于在编译时从十六进制字节字面量创建固定大小的字节数组。
#![feature(proc_macro)]
extern crate hexbytes;
use hexbytes::hb;
fn main() {
let bytes = hb!("0bad abba cd");
}