pub trait Reversible: Sized {
// Required method
fn reversed(&self) -> Self;
}Expand description
Reversible geometry: the same point set, traversed the other way.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".