#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...
Nesta página do site você pode assistir ao vídeo on-line Rust Errors Backtrace duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário The Dev Method 16 Junho 2022, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 1,024 vezes e gostou 26 espectadores. Boa visualização!