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§

source

type OutputArrayLength<T>: ArrayLength<T>

The underlying ArrayLength, which should always equal Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl AnyArrayLength for UTerm

source§

impl<N: AnyArrayLength> AnyArrayLength for UInt<N, B0>

source§

impl<N: AnyArrayLength> AnyArrayLength for UInt<N, B1>

Implementors§