Skip to main content

Array31

Trait Array31 

Source
pub trait Array31<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>
    + IntoFieldMut<I29, Ty = T>
    + IntoFieldMut<I30, Ty = T> { }
Expand description

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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<This, T> Array31<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> + IntoFieldMut<I29, Ty = T> + IntoFieldMut<I30, Ty = T>,