macro_rules! lazy_static_include_str {
    ( @impl $name:ident ) => { ... };
    ( @inner $name:ident, $path:expr ) => { ... };
    ( @unit $(#[$attr: meta])* $name:ident => $path:expr ) => { ... };
    ( @unit $(#[$attr: meta])* pub$(($($v:tt)+))? $name:ident => $path:expr ) => { ... };
    ( $($(#[$attr: meta])* $name:ident => $path:expr),* $(,)* ) => { ... };
    ( $($(#[$attr: meta])* pub$(($($v:tt)+))? $name:ident => $path:expr),* $(,)* ) => { ... };
}
Expand description

Includes a utf8-encoded file as a string slice (&'static str).

The file is located relative to the directory containing the manifest of your package.