std::include_bytes

Macro std::include_bytes

macro_rules! include_bytes {
    ($file:expr) => { ... };
}

Includes a file as a reference to a byte array.

The file is located relative to the current file. (similarly to how modules are found)

This macro will yield an expression of type &'static [u8; N] which is the contents of the file.

Examples

let secret_key = include_bytes!("secret-key.bin");

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/macro.include_bytes.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部