pub trait PointElement<Coord, Size: SizeDesc> {
// Required method
fn make_point(pos: Coord, size: Size, style: ShapeStyle) -> Self;
}
Expand description
The element that used to describe a point
Required Methods§
fn make_point(pos: Coord, size: Size, style: ShapeStyle) -> 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.