macro_rules! error {
( $fmt:expr $(, $args:expr )* ) => { ... };
}Expand description
Print a message to stderr with a “error: “ prefix and terminate the process
Parameters:
fmt: A format string.args*: Format string arguments.
macro_rules! error {
( $fmt:expr $(, $args:expr )* ) => { ... };
}Print a message to stderr with a “error: “ prefix and terminate the process
Parameters:
fmt: A format string.args*: Format string arguments.