pub trait Swizzles3Mut<T: Scalar>: Swizzles2Mut<T> + Swizzles3<T> {
    fn set_xyz(&mut self, right: &Self::Swizzle3);
    fn set_xzy(&mut self, right: &Self::Swizzle3);
    fn set_yxz(&mut self, right: &Self::Swizzle3);
    fn set_yzx(&mut self, right: &Self::Swizzle3);
    fn set_zxy(&mut self, right: &Self::Swizzle3);
    fn set_zyx(&mut self, right: &Self::Swizzle3);
    fn set_yz(&mut self, right: &Self::Swizzle2);
    fn set_xz(&mut self, right: &Self::Swizzle2);
    fn set_zy(&mut self, right: &Self::Swizzle2);
    fn set_zx(&mut self, right: &Self::Swizzle2);
}

Required Methods

Implementors