E0433E0433 — Failed to Resolve Module Path
The module path used in a use statement or type path cannot be resolved.
E0596You are trying to mutably borrow a value that is not declared as mutable.
The value needs to be mutable to take a mutable reference to it. The variable was declared without mut, or the struct field is behind an immutable reference.
Add mut to the variable declaration. Use interior mutability (Cell, RefCell, Mutex) if the outer reference must be immutable. Take a mutable reference to the outer struct.
E0433The module path used in a use statement or type path cannot be resolved.
E0255A local definition conflicts with an imported name.
E0728The .await keyword is used in a function that is not declared async.
E0599The method does not exist on the given type, or the required trait is not in scope.
E0716A reference is held to a temporary value that is immediately dropped.
E0603You are trying to access a private item from outside its module.