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 match a URL with a regex in Rust?
- How to replace strings using Rust regex?
- How to replace a capture group using Rust regex?
- How to use regex to match a group in Rust?
- How to use regex lookbehind in Rust?
- How to declare a constant Rust HashMap?
- How to get a capture group using Rust regex?
- How to calculate the sum of a Rust slice?
- How to extract data with regex in Rust?
- How to use captures_iter with regex in Rust?
See more codes...