macro_rules! here {
    () => { ... };
    ($($args:tt)+) => { ... };
}
Expand description

A macro for attaching info to error messages pointing to the line of code responsible for the error. Thanks to dtolnay for this macro