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
write! returns a Result. And Result is #[must_use]. Means users need to handle the Result.
In the case of human-panic, they didn't use the result, so they forced Rust to ignore them.
But in your case, you mostly/always use ? to actually use it. So there is no need for let _.
ps: anyway, since you are here... humad-panic is also an unused dep in your crate :)
There are many
let _
s, most of them (or maybe all of them) are useless in your code.The text was updated successfully, but these errors were encountered: