rustHow to display error in Rust
Rust provides a standard library module called std::error
which provides a trait called Error
that can be used to display errors. The Error
trait provides a Display
implementation which can be used to print errors.
Code example:
use std::error::Error;
fn main() {
let err = "Error message";
let err_obj = err.into();
println!("{}", err_obj);
}
Output
Error message
Explanation:
-
The
use std::error::Error
statement imports theError
trait from thestd::error
module. -
The
err
variable is a string literal containing the error message. -
The
err_obj
variable is created by converting theerr
string literal into anError
object using theinto()
method. -
The
println!
macro is used to print the error message contained in theerr_obj
object.
Helpful links:
More of Rust
- How to replace a capture group using Rust regex?
- How to get a capture group using Rust regex?
- How to match whitespace with a regex in Rust?
- How to replace strings using Rust regex?
- How to match the end of a line in a Rust regex?
- How to split a string with Rust regex?
- Regex example to match multiline string in Rust?
- How to get execution time in Rust
- How to use regex lookahead in Rust?
- How to split a string by regex in Rust?
See more codes...