rd

Macro rd 

Source
macro_rules! rd {
    () => { ... };
    ($($value:expr),+ $(,)?) => { ... };
}
Expand description

Send values to Ray and terminate the process (alias of ray!(...).die()).

use ray::rd;

rd!("fatal");