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
{ path = "std::result::Result::unwrap", reason = "can panic which is not acceptable for expected failures", replacement = "use `expect()` with descriptive message for unexpected failures, or proper error handling for expected failures" },
{ path = "std::option::Option::unwrap", reason = "can panic which is not acceptable for expected `None` values", replacement = "use `expect()` with descriptive message when None is unexpected, or handle the None case explicitly" },