Trait hybrid_array::IntoArray 
source · [−]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
Required Methods
fn into_hybrid_array(self) -> Array<T, Self::Size>
fn into_hybrid_array(self) -> Array<T, Self::Size>
Convert into the hybrid-array crate’s Array type.