panic-index-out-of-boundsPanic — Index Out of Bounds
The program panicked because an index was out of the valid range for a collection.
E0428An item with the same name is defined more than once in the same scope.
Two items (functions, types, constants, etc.) have the same name in the same module. Rust does not allow duplicate names in the same scope.
Rename one of the duplicate items. Move one to a different module. Remove the duplicate if it was accidental.
panic-index-out-of-boundsThe program panicked because an index was out of the valid range for a collection.
E0061A function was called with the wrong number of arguments.
E0117You are implementing a foreign trait for a foreign type, violating the orphan rule.
panic-integer-overflowThe program panicked because an arithmetic operation caused integer overflow in debug mode.
E0433The module path used in a use statement or type path cannot be resolved.
E0015A non-const function is called in a constant expression context.