Back to Rust Lang

Error Handling

redirects/error-handling.md

latest532 B
Original Source

% Error Handling

<small>There is a new edition of the book and this is an old link.</small>

Rust groups errors into two major categories: recoverable errors with Result<T, E> and unrecoverable errors with panic!.


Here are the relevant sections in the new and old books: