pub trait ListHashes {
// Provided methods
fn list_hashes(&self, f: &mut impl FnMut(Hash)) { ... }
fn topology_hash(&self) -> Hash { ... }
fn point_count(&self) -> usize { ... }
}Provided Methods§
fn list_hashes(&self, f: &mut impl FnMut(Hash))
fn topology_hash(&self) -> Hash
fn point_count(&self) -> usize
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.