Trait narrow::StructArrayType [−][src]
pub trait StructArrayType: Sized { type Array: FromIterator<Self> + ArrayData; }
Expand description
Struct types that can be stored in arrays.
Enables converting arrays of structs into structs of arrays.
Associated Types
type Array: FromIterator<Self> + ArrayData
type Array: FromIterator<Self> + ArrayData
The type storing the struct of arrays.