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
The `description` method has been soft-deprecated for some time now,
and current nightly (1.41) warns upon its use:
warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string()
Since our `description` implementation made use of the underlying
error's `description` method, we triggered that warning. Let's fix
that by just getting rid of the implementation containing the
offending code.
0 commit comments