std::include_str

Macro std::include_str

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

Includes a utf8-encoded file as a string.

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

This macro will yield an expression of type &'static str which is the contents of the file.

Examples

let secret_key = include_str!("secret-key.ascii");

© 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_str.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部