pub trait ContainsHyperedge: ContainsRelation {
// Provided method
fn contains_hyperedge(&self, hyperedge: Self::RelationId) -> bool { ... }
}Expand description
Hyperedge-ID containment capability for hypergraph views.
Hypergraph-facing name for ContainsRelation.
Provided Methods§
Sourcefn contains_hyperedge(&self, hyperedge: Self::RelationId) -> bool
fn contains_hyperedge(&self, hyperedge: Self::RelationId) -> bool
Returns whether hyperedge 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".