#byte #byte-string #concat #proc

proc-concat-bytes

类似于std::concat,但用于字节字符串

1 个不稳定版本

0.1.0 2019年2月14日

#29#concat

MIT/Apache

3KB

Crates.io api

proc-concat-bytes

连接字节字面量

示例

use proc_concat_bytes::concat_bytes;
let c_str = std::ffi::CStr::from_bytes_with_nul(&concat_bytes!(b"Hello World!", b'\0')[..]).unwrap();

lib.rs:

连接字节字面量

示例

use proc_concat_bytes::concat_bytes;
let c_str = std::ffi::CStr::from_bytes_with_nul(&concat_bytes!(b"Hello World!", b'\0')[..]).unwrap();

依赖

~2MB
~46K SLoC