mirror of
https://github.com/rust-lang/book.git
synced 2026-04-05 05:59:15 -04:00
533 B
533 B
% Error Handling
There is a new edition of the book and this is an old link.
Rust groups errors into two major categories: recoverable errors with
Result<T, E>and unrecoverable errors withpanic!.
Here are the relevant sections in the new and old books: