Trait NodeToNode

Source
pub trait NodeToNode {
    // Required methods
    fn N2N(&self, s: u64, d: u64) -> Vec<NodePath<'_>>;
    fn node_to_node(&self, s: u64, d: u64) -> Vec<NodePath<'_>>;
    fn node_to_node_helper(&self, n: u64, s: u64, d: u64) -> Vec<NodePath<'_>>;
}

Required Methods§

Source

fn N2N(&self, s: u64, d: u64) -> Vec<NodePath<'_>>

Source

fn node_to_node(&self, s: u64, d: u64) -> Vec<NodePath<'_>>

Source

fn node_to_node_helper(&self, n: u64, s: u64, d: u64) -> Vec<NodePath<'_>>

Implementors§