pub trait BuildSurface {
// Provided method
fn plane_from_points(points: [impl Into<Point<3>>; 3]) -> Surface { ... }
}Expand description
Build a Surface
Provided Methods§
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.