pub trait Topological {
// Required method
fn accept_points(&self, visitor: &mut impl PointVisitor);
// Provided methods
fn topology_hash(&self) -> Hash { ... }
fn topology(&self) -> TopoVec { ... }
}Required Methods§
fn accept_points(&self, visitor: &mut impl PointVisitor)
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.