pub trait ContainsEdge: ContainsRelation {
// Provided method
fn contains_edge(&self, edge: Self::RelationId) -> bool { ... }
}Expand description
Edge-ID containment capability for graph views.
Graph-facing name for ContainsRelation.
Provided Methods§
Sourcefn contains_edge(&self, edge: Self::RelationId) -> bool
fn contains_edge(&self, edge: Self::RelationId) -> bool
Returns whether edge is valid and visible in this graph view.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".