Macro std::include_str1.0.0 [] [src]

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

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");Run