pub trait PointElement<'a, Coord> {
// Required method
fn make_point(pos: Coord, size: u32, style: ShapeStyle<'a>) -> Self;
}
Expand description
The element that used to describe a point
Required Methods§
fn make_point(pos: Coord, size: u32, style: ShapeStyle<'a>) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.