macro_rules! info {
($message:literal) => { ... };
($error:expr) => { ... };
($fmt:expr, $($arg:tt)*) => { ... };
}
Expand description
Create an error at the info level.
The argument can be either:
- an expression implementing
Display
- a string literal
- a format string, similar to the
format!()
macro