pub trait Swizzles4Mut<T: Scalar>: Swizzles3Mut<T> + Swizzles4<T> {
Show 19 methods fn set_xyzw(&mut self, right: &Self::Swizzle4);
fn set_xyw(&mut self, right: &Self::Swizzle3);
fn set_yxw(&mut self, right: &Self::Swizzle3);
fn set_wxy(&mut self, right: &Self::Swizzle3);
fn set_wyx(&mut self, right: &Self::Swizzle3);
fn set_yzw(&mut self, right: &Self::Swizzle3);
fn set_zyw(&mut self, right: &Self::Swizzle3);
fn set_wyz(&mut self, right: &Self::Swizzle3);
fn set_wzy(&mut self, right: &Self::Swizzle3);
fn set_xzw(&mut self, right: &Self::Swizzle3);
fn set_zxw(&mut self, right: &Self::Swizzle3);
fn set_wxz(&mut self, right: &Self::Swizzle3);
fn set_wzx(&mut self, right: &Self::Swizzle3);
fn set_xw(&mut self, right: &Self::Swizzle2);
fn set_yw(&mut self, right: &Self::Swizzle2);
fn set_zw(&mut self, right: &Self::Swizzle2);
fn set_wx(&mut self, right: &Self::Swizzle2);
fn set_wy(&mut self, right: &Self::Swizzle2);
fn set_wz(&mut self, right: &Self::Swizzle2);
}

Required methods

Implementors