S0110: type does not satisfy constraint
Generated from rellum-diagnostics/src/db.rs.
Explanation
Generic functions declare constraints on their type parameters to express which operations the type must support. When a concrete type argument does not satisfy a declared constraint, the compiler rejects that instantiation.
Common causes
- passing String to a function requiring ord
- passing a Move type to a function requiring copy
- using an unknown constraint name
Canonical fixes
- use a type that satisfies the constraint
- change the generic function to require a constraint the type supports