E0658E0658 — Unstable Feature Used
A feature that is not yet stabilized in Rust is being used without the feature gate.
unused_mutA variable is declared as mutable but never actually mutated.
The variable has the mut keyword but is never modified after declaration. The mut keyword is unnecessary and can be misleading.
Remove the mut keyword from the variable declaration. If the variable should be mutated, add the mutation code. Check if refactoring removed the mutation.
E0658A feature that is not yet stabilized in Rust is being used without the feature gate.
clippy::clone_on_copyThe clone() method is called on a type that implements Copy.
E0277A dynamically sized type (DST) is used where a Sized type is required.
E0433The module path used in a use statement or type path cannot be resolved.
E0382A value is used after it has been moved to another variable or function.
E0425An identifier is used but not defined in the current scope.