pub trait CanvasChildExt: LayoutControl + Sized {
// Provided methods
fn canvas_left(self, value: f64) -> Self { ... }
fn canvas_top(self, value: f64) -> Self { ... }
}Expand description
Places a concrete native control in its parent Canvas.
Provided Methods§
fn canvas_left(self, value: f64) -> Self
fn canvas_top(self, value: f64) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".