pub trait ParticipantHyperedge: IncidenceRelation {
// Provided method
fn participant_hyperedge(
&self,
participant: ParticipantId<Self>,
) -> HyperedgeId<Self> { ... }
}Expand description
Capability for resolving the hyperedge that carries a participant record.
Hypergraph-facing name for IncidenceRelation.
Provided Methods§
Sourcefn participant_hyperedge(
&self,
participant: ParticipantId<Self>,
) -> HyperedgeId<Self>
fn participant_hyperedge( &self, participant: ParticipantId<Self>, ) -> HyperedgeId<Self>
Returns the hyperedge carrying participant.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".