rustHow to print error in Rust
Rust provides a standard library macro called eprintln!
to print errors to the standard error output. This macro is similar to the println!
macro, but prints to the standard error instead of the standard output.
Code example:
fn main() {
eprintln!("This is an error message");
}
Output
This is an error message
Explanation:
eprintln!
: This is a macro provided by the Rust standard library to print errors to the standard error output.This is an error message
: This is the message that will be printed to the standard error output.
Helpful links:
More of Rust
- How to replace a capture group using Rust regex?
- How to use regex to match a double quote in Rust?
- How to convert the keys of a Rust HashMap to a vector?
- How to match a URL with a regex in Rust?
- How to ignore case in Rust regex?
- How to parse JSON string in Rust?
- How to insert an element into a Rust HashMap if it does not already exist?
- How to clear a Rust HashMap?
- How to replace strings using Rust regex?
- How to match the end of a line in a Rust regex?
See more codes...