pub trait SetXYZM<M>:
SetXY
+ SetZ
+ SetM<M> {
// Provided method
fn set_xyzm(&mut self, x: f64, y: f64, z: f64, m: M) { ... }
}Expand description
Composite Trait: XY + Z + M
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".