Rust Errors Backtrace

preview_player
Показать описание
#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
Рекомендации по теме
Комментарии
Автор

your short is cut too early :C can't really see it nicely :/

AgainPsychoX
Автор

Cool, didn't know this! What's the name of your vscode theme btw?

Alex-ufie