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::Errorstatement imports theErrortrait from thestd::errormodule. -
The
errvariable is a string literal containing the error message. -
The
err_objvariable is created by converting theerrstring literal into anErrorobject using theinto()method. -
The
println!macro is used to print the error message contained in theerr_objobject.
Helpful links:
More of Rust
- Generator example in Rust
- How to replace a capture group using Rust regex?
- How to match a URL with a regex in Rust?
- How to use binary regex in Rust?
- How to use regex lookahead in Rust?
- How to make regex case insensitive in Rust?
- Regex example to match multiline string in Rust?
- How to use regex to match a double quote in Rust?
- Yield example in Rust
- How to use a tuple as a key in a Rust HashMap?
See more codes...