AStarNode

Trait AStarNode 

Source
pub trait AStarNode:
    Eq
    + Hash
    + Copy
    + Ord { }
Expand description

A simple trait encapsulating what other traits are needed for a type to be usable in the A* Algorithm.

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§

Source§

impl<T> AStarNode for T
where T: Eq + Hash + Copy + Ord,