rustHow to get error message in Rust
Rust provides a number of ways to get error messages. The most common way is to use the Result type. Result is an enum that can either be Ok or Err. If the operation is successful, Ok is returned, otherwise Err is returned with an error message.
Code example:
let result = some_function();
match result {
Ok(value) => println!("Success: {}", value),
Err(err) => println!("Error: {}", err),
}
Output
Success: some_value
Explanation:
- The
some_function()function is called and the result is stored in theresultvariable. - The
matchstatement is used to check the value ofresult. - If
resultisOk, theprintln!macro is used to print the value ofvalue. - If
resultisErr, theprintln!macro is used to print the error message stored inerr.
Helpful links:
More of Rust
- How to replace a capture group using Rust regex?
- How to match a URL with a regex in Rust?
- How to use regex captures in Rust?
- How to ignore case in Rust regex?
- How to perform matrix operations in Rust?
- How to use regex to match a double quote in Rust?
- Regex example to match multiline string in Rust?
- How to make regex case insensitive in Rust?
- How to use regex lookahead in Rust?
- How to match the end of a line in a Rust regex?
See more codes...