pub trait ContainsVertex: ContainsElement {
// Provided method
fn contains_vertex(&self, vertex: Self::ElementId) -> bool { ... }
}Expand description
Vertex-ID containment capability for hypergraph views.
Hypergraph-facing name for ContainsElement.
Provided Methods§
Sourcefn contains_vertex(&self, vertex: Self::ElementId) -> bool
fn contains_vertex(&self, vertex: Self::ElementId) -> bool
Returns whether vertex is valid and visible in this hypergraph view.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".