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 match whitespace with a regex in Rust?
- How to replace a capture group using Rust regex?
- How to split a string with Rust regex?
- How to iterate over a Rust slice with an index?
- How to use negation in Rust regex?
- How to use regex captures in Rust?
- Regex example to match multiline string in Rust?
- How to get a capture group using Rust regex?
- How to use modifiers in a Rust regex?
- How to create a HashMap of structs in Rust?
See more codes...