[][src]Trait pathfinder::traits::Find

pub trait Find: Hash + Location {
    fn find<H: Hash>(&self, hash: H) -> Option<Coordinate> { ... }
}

Makes it possible to find connected nodes in networks.

Provided methods

fn find<H: Hash>(&self, hash: H) -> Option<Coordinate>

Matches the Hashes and returns Some if it matches.

Loading content...

Implementors

impl Find for Group[src]

fn find<H: Hash>(&self, hash: H) -> Option<Coordinate>[src]

Recursively calls find as the group contains sets of Nodes.

impl Find for HL[src]

impl Find for Node[src]

Loading content...