logo
pub trait IntoArray<T> {
    type Size: ArraySize<T>;

    fn into_hybrid_array(self) -> Array<T, Self::Size>;
}
Expand description

Convert the given type into an Array.

Required Associated Types

Size of the Array.

Required Methods

Convert into the hybrid-array crate’s Array type.

Implementations on Foreign Types

Implementors