1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-05 10:05:39 +02:00

Update catch_unwind example (#1356)

Fixes #1352.

---------

Co-authored-by: Martin Geisler <martin@geisler.net>
This commit is contained in:
Manish Kumar 2023-10-12 20:57:45 +05:30 committed by GitHub
parent de0e8e6b6d
commit 358d7da22c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,17 +7,17 @@ use std::panic;
fn main() {
let result = panic::catch_unwind(|| {
println!("hello!");
"No problem here!"
});
assert!(result.is_ok());
println!("{result:?}");
let result = panic::catch_unwind(|| {
panic!("oh no!");
});
assert!(result.is_err());
println!("{result:?}");
}
```
* This can be useful in servers which should keep running even if a single
- This can be useful in servers which should keep running even if a single
request crashes.
* This does not work if `panic = 'abort'` is set in your `Cargo.toml`.
- This does not work if `panic = 'abort'` is set in your `Cargo.toml`.