Trait ContainedHyperedge

Source
pub trait ContainedHyperedge<'a>: Hypergraph<'a> + Sized {
    // Provided methods
    fn get_hyperedges_list(&'a self) -> HyperedgeList<'a, Self> { ... }
    fn contained_hyperedges(
        &'a self,
        adj: &HyperedgeList<'a, Self>,
        node: &Self::Node,
    ) -> impl Iterator<Item = &'a Self::Edge> { ... }
}

Provided Methods§

Source

fn get_hyperedges_list(&'a self) -> HyperedgeList<'a, Self>

Source

fn contained_hyperedges( &'a self, adj: &HyperedgeList<'a, Self>, node: &Self::Node, ) -> impl Iterator<Item = &'a Self::Edge>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§