Trait Array29

Source
pub trait Array29<T>:
    Array_16_24<T>
    + IntoFieldMut<I24, Ty = T>
    + IntoFieldMut<I25, Ty = T>
    + IntoFieldMut<I26, Ty = T>
    + IntoFieldMut<I27, Ty = T>
    + IntoFieldMut<I28, Ty = T> { }
Expand description

A structural alias for an array of this size. With shared,mutable,and by value access to the elements.

Implementors§

Source§

impl<This, T> Array29<T> for This
where This: ?Sized + Array_16_24<T> + IntoFieldMut<I24, Ty = T> + IntoFieldMut<I25, Ty = T> + IntoFieldMut<I26, Ty = T> + IntoFieldMut<I27, Ty = T> + IntoFieldMut<I28, Ty = T>,