Trait FromIndexer

Source
pub trait FromIndexer<P, Q>: Sized
where P: Topological, Q: Topological<Vertex = P::Vertex>,
{ type Error: Debug; // Required method fn from_indexer<I, N>(input: I, indexer: N) -> Result<Self, Self::Error> where I: IntoIterator<Item = P>, N: Indexer<Q, P::Vertex>; }

Required Associated Types§

Required Methods§

Source

fn from_indexer<I, N>(input: I, indexer: N) -> Result<Self, Self::Error>
where I: IntoIterator<Item = P>, N: Indexer<Q, P::Vertex>,

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§