GraphSearch

Trait GraphSearch 

Source
pub trait GraphSearch<Idx>: Search<Idx> + Traversal<Idx> { }
Expand description

The GraphSearch trait is an automatically implemented trait for types that implement both the Search and Traversal traits indicating it can successfully perform a search on some graph structure while also allowing traversal of the graph.

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, Idx> GraphSearch<Idx> for T
where T: Search<Idx> + Traversal<Idx>,