Trait encase::vector::FromVectorParts
source · pub trait FromVectorParts<T: VectorScalar, const N: usize> {
// Required method
fn from_parts(parts: [T; N]) -> Self;
}
Expand description
Enables the creation of a vector (via [T; N]
)
Required Methods§
fn from_parts(parts: [T; N]) -> Self
Object Safety§
This trait is not object safe.