Crate static_include_bytes
source ·Expand description
static_include_bytes!
Macro
Like the built-in include_bytes!
macro, but produces a static array definition.
Example
use static_include_bytes::static_include_bytes;
static_include_bytes!(TEN_BYTES, concat!(env!("CARGO_MANIFEST_DIR"), "/ten_bytes.bin"));
assert_eq!(TEN_BYTES.len(), 10);
assert_eq!(&TEN_BYTES, b"0123456789");
The macro invocation is equivalent to static TEN_BYTES: [u8; _] = include_bytes!(...);
, but as of 2023-08-18, you cannot write this directly due to https://github.com/rust-lang/rust/issues/85077 .
Macros
- Inserts a static byte array definition with both its content and length loaded from a file at compile time.
static_include_bytes!(NAME, PATH)
is semantically equivalent tostatic NAME: [u8; _] = *include_bytes!(PATH);
which you cannot write directly as of 2023-08-18 due to https://github.com/rust-lang/rust/issues/85077 .