panic-index-out-of-boundsPanic — Index Out of Bounds
The program panicked because an index was out of the valid range for a collection.
E0600A unary operator is applied to a type that does not support it.
The type does not implement the trait required for the unary operator. For example, the negation operator (-) requires the Neg trait, and logical not (!) requires the Not trait.
Implement the required operator trait for the type. Convert the value to a type that supports the operator. Use a method call instead of the operator.
panic-index-out-of-boundsThe program panicked because an index was out of the valid range for a collection.
E0015A non-const function is called in a constant expression context.
E0599The method does not exist on the given type, or the required trait is not in scope.
clippy::clone_on_copyThe clone() method is called on a type that implements Copy.
E0423A type name is used where a value was expected.
E0609The struct or union does not have a field with the given name.