pub trait Tuple: DynTuple + Sized {
const ARITY: usize;
}Expand description
Tuples with a known size. Implemented for sized tuples of arity 0 to 32.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.