pub trait ParticipantVertex: IncidenceElement {
// Provided method
fn participant_vertex(
&self,
participant: ParticipantId<Self>,
) -> VertexId<Self> { ... }
}Expand description
Capability for resolving the vertex carried by a participant record.
Hypergraph-facing name for IncidenceElement.
Provided Methods§
Sourcefn participant_vertex(&self, participant: ParticipantId<Self>) -> VertexId<Self>
fn participant_vertex(&self, participant: ParticipantId<Self>) -> VertexId<Self>
Returns the vertex referenced by participant.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".