pub trait IncidentHyperedges: VertexIncidences + ParticipantHyperedge {
type IncidentHyperedges<'view>: Iterator<Item = Self::RelationId>
where Self: 'view;
// Required method
fn incident_hyperedges(
&self,
vertex: Self::ElementId,
) -> Self::IncidentHyperedges<'_>;
}Expand description
Capability for traversing hyperedges incident to one vertex.
Hypergraph-facing form of element-to-relation traversal.
Required Associated Types§
Sourcetype IncidentHyperedges<'view>: Iterator<Item = Self::RelationId>
where
Self: 'view
type IncidentHyperedges<'view>: Iterator<Item = Self::RelationId> where Self: 'view
Iterator over hyperedges incident to one vertex.
Required Methods§
Sourcefn incident_hyperedges(
&self,
vertex: Self::ElementId,
) -> Self::IncidentHyperedges<'_>
fn incident_hyperedges( &self, vertex: Self::ElementId, ) -> Self::IncidentHyperedges<'_>
Returns hyperedges incident to vertex.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".