[][src]Macro rocket_include_static_resources::static_resources_initialize

macro_rules! static_resources_initialize {
    ( $resources:expr, $($name:expr, $path:expr), * $(,)* ) => { ... };
}

Used in the fairing of StaticResponse to include static files into your executable binary file. You need to specify each file's name and its path. In order to reduce the compilation time and allow to hot-reload resources, files are compiled into your executable binary file together, only when you are using the release profile.