Trait AsMutVectorParts

Source
pub trait AsMutVectorParts<T: VectorScalar, const N: usize> {
    // Required method
    fn as_mut_parts(&mut self) -> &mut [T; N];
}
Expand description

Enables writing to the vector (via &mut [T; N])

Required Methods§

Source

fn as_mut_parts(&mut self) -> &mut [T; N]

Implementors§