Trait hybrid_array::IntoArray
source · pub trait IntoArray<T> {
type Size: ArraySize;
// Required method
fn into_hybrid_array(self) -> Array<T, Self::Size>;
}
Expand description
Convert the given type into an Array
.
Required Associated Types§
Required Methods§
sourcefn 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.