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