macro_rules! error {
($($arg:tt)+) => { ... };
}
Expand description
Can be used to print error messages during a build script without aborting the build.
Follows the same calling semantics as std::println!
. Messages are prefixed with
“error:” in red.