Trait NodeSetPair

Source
pub trait NodeSetPair: DirectedHyperedge {
    type Node;

    // Required method
    fn from_nodes_pair(src: Vec<usize>, dst: Vec<usize>) -> Self;
}

Required Associated Types§

Required Methods§

Source

fn from_nodes_pair(src: Vec<usize>, dst: Vec<usize>) -> Self

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§