1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-21 06:36:31 +02:00
comprehensive-rust/src/error-handling.md

8 lines
172 B
Markdown
Raw Normal View History

2022-12-21 16:36:30 +01:00
# Error Handling
Error handling in Rust is done using explicit control flow:
* Functions that can have errors list this in their return type,
* There are no exceptions.