pub trait BuildFace {
// Provided methods
fn unbound(surface: Handle<Surface>, services: &mut Services) -> Face { ... }
fn triangle(
points: [impl Into<Point<3>>; 3],
services: &mut Services,
) -> Polygon<3> { ... }
}Expand description
Build a Face
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.