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