Trait PathFinding

Source
pub trait PathFinding {
    // Required method
    fn execute(&self, source: Node, target: Node, graph: &Graph) -> Graph;
}

Required Methods§

Source

fn execute(&self, source: Node, target: Node, graph: &Graph) -> Graph

Implementors§