#rust #errors #panic #shorts
There are two groups of errors: recoverable and unrecoverable. Errors are a part of programming and every language handles it differently.
Recoverable errors are the ones you can catch while the program’s running and have the program decide what to do next depending on the kind of error it is in the current context. For example, maybe you want to read a file but the file cannot be found. Maybe you need to tell the user or the caller of your function that this error occurred because of this reason.
Unrecoverable errors are ones where the program cannot continue run. Like, reaching beyond the bounds of an array.
Rust has no exceptions. Instead, we use the Result type for recoverable errors and panic! macro for unrecoverable errors.
Links
Chapter 9 of the Rust Programming Book: Error Handling
https://doc.rust-lang.org/book/ch09-0...
On this page of the site you can watch the video online Rust Errors Backtrace with a duration of hours minute second in good quality, which was uploaded by the user The Dev Method 16 June 2022, share the link with friends and acquaintances, this video has already been watched 1,024 times on youtube and it was liked by 26 viewers. Enjoy your viewing!