std::include_str!
[−]
[src]
macro_rules! include_str { ($file:expr) => { ... }; }
Includes a utf8-encoded file as a string.
This macro will yield an expression of type &'static str
which is the
contents of the filename specified. The file is located relative to the
current file (similarly to how modules are found),
Examples
fn main() { let secret_key = include_str!("secret-key.ascii"); }let secret_key = include_str!("secret-key.ascii");