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 use regex to match a double quote in Rust?
- How to replace strings using Rust regex?
- How to convert the keys of a Rust HashMap to a HashSet?
- How to extend a Rust HashMap?
- Example of struct private field in Rust
- How to find an element in a slice in Rust?
- How to create a generator function in Rust?
- How to get struct length in Rust
- Yield example in Rust
- How to match digits with regex in Rust?
See more codes...