pub trait KeyCat<Rhs> {
type Out;
}Expand description
Type-level concatenation of index key types, mirroring the runtime tuple
flattening in Set::product. The arity ceiling is 4, matching the
FromIndexKey/From<(...)> tuple implementations.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".