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

The type storing the struct of arrays.

Implementors