volga

Macro not_found

Source
macro_rules! not_found {
    () => { ... };
    ([ $( ($key:expr, $value:expr) ),* $(,)? ]) => { ... };
    ($body:expr) => { ... };
}
Expand description

Produces HTTP 404 NOT FOUND response

§Examples

§Without body

use volga::not_found;

not_found!();

§plain/text body

use volga::not_found;

not_found!("User not found!");