pub trait ShapeWithOneHole {
// Required method
fn into_shape(self, el_count: usize) -> Result<Shape>;
}Required Methods§
fn into_shape(self, el_count: usize) -> Result<Shape>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".