Trait ArrayForm

Source
pub trait ArrayForm<const N: usize>: _ArrayForm<N, _T = Self::T, _Elem = Self::Elem> {
    type T;
    type Elem;
}

Required Associated Types§

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.

Implementors§

Source§

impl<U, const N: usize> ArrayForm<N> for U
where U: _ArrayForm<N>,

Source§

type T = <U as _ArrayForm<N>>::_T

Source§

type Elem = <U as _ArrayForm<N>>::_Elem