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
* Fix `clippy::only-used-in-recursion`
error: parameter is only used in recursion
--> crates/env/src/types.rs:60:22
|
60 | fn from_le_bytes(bytes: Self::Bytes) -> Self {
| ^^^^^ help: if this is intentional, prefix with an underscore: `_bytes`
|
= note: `-D clippy::only-used-in-recursion` implied by `-D warnings`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#only_used_in_recursion
* Make recursion explicit
0 commit comments