Trait plexus::index::FromIndexer  
source · [−]pub trait FromIndexer<P, Q>: Sized where
    P: Topological,
    Q: Topological<Vertex = P::Vertex>, {
    type Error: Debug;
    fn from_indexer<I, N>(input: I, indexer: N) -> Result<Self, Self::Error>
    where
        I: IntoIterator<Item = P>,
        N: Indexer<Q, P::Vertex>;
}