pub trait AnyArrayLength {
    type OutputArrayLength<T>: ArrayLength<T>;
}
Expand description

A marker type denoting that Self corresponds to an ArrayLength over any type

Required Associated Types

The underlying ArrayLength, which should always equal Self

Implementations on Foreign Types

Implementors