Trait Array15

Source
pub trait Array15<T>:
    Array_0_8<T>
    + IntoFieldMut<I8, Ty = T>
    + IntoFieldMut<I9, Ty = T>
    + IntoFieldMut<I10, Ty = T>
    + IntoFieldMut<I11, Ty = T>
    + IntoFieldMut<I12, Ty = T>
    + IntoFieldMut<I13, Ty = T>
    + IntoFieldMut<I14, 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> Array15<T> for This
where This: ?Sized + Array_0_8<T> + IntoFieldMut<I8, Ty = T> + IntoFieldMut<I9, Ty = T> + IntoFieldMut<I10, Ty = T> + IntoFieldMut<I11, Ty = T> + IntoFieldMut<I12, Ty = T> + IntoFieldMut<I13, Ty = T> + IntoFieldMut<I14, Ty = T>,