pub trait Unconstrained { }
Expand description
Implemented by types that can’t have constraints.
Note: this is intended as an implementation helper, not as a where clause bound. If you want bound a type on being unconstrained you must use something like: `T: Constrained<Constraint=()>``