|
|
|
|
|
by selfmodruntime
3 days ago
|
|
It is different. Handling `None` in a way that crashes your program is well defined in a Rust function. If you're using `unwrap` or `expect`, the program will crash with a stack trace and an error, instead of running into undefined behavior. |
|