[][src]Macro fatal::fatal

macro_rules! fatal {
    () => { ... };
    ($($arg:tt)*) => { ... };
}

Prints to standard-error and exits with an error-code. Returns !.

Equivalent to eprintln! followed by process::exit.