You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the main Rust code, when gathering Results .unwrap() is used to extract the value from those results. This is unsuitable for much of the production code because unwrap will panic if it finds no value or an error in the Result.
Case matching should be used instead to process these results.
The text was updated successfully, but these errors were encountered:
In the main Rust code, when gathering Results .unwrap() is used to extract the value from those results. This is unsuitable for much of the production code because unwrap will panic if it finds no value or an error in the Result.
Case matching should be used instead to process these results.
The text was updated successfully, but these errors were encountered: