Skip to content

Details

• What we'll do
Rust Error Handling workshop

Rust’s commitment to reliability extends to error handling. This is seen in great detail in situations that involve IO.

Rust groups errors into two major categories: recoverable and unrecoverable errors. Rust doesn’t have exceptions. Instead, it has

  • value Result for recoverable errors
  • panic! macro that stops execution when it encounters unrecoverable errors.

• What to bring
Latest Rust stable or nightly installed

• Important to know
This is a "FOSS" free of charge workshop.

Related topics

You may also like