Skip to main content

ContainsEdge

Trait ContainsEdge 

Source
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§

Source

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".

Implementors§

Source§

impl<T> ContainsEdge for T