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