pub trait AddLength<T, N: ArrayLength<T>>: ArrayLength<T> {
type Output: ArrayLength<T>;
}
Expand description
Helper trait for arr!
macro
Required Associated Types§
Sourcetype Output: ArrayLength<T>
type Output: ArrayLength<T>
Resulting length
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.