pub trait MultiVerticesSource<'a> {
    type Iterator: Iterator<Item = VerticesSource<'a>>;

    fn iter(self) -> Self::Iterator;
}
Expand description

Objects that describe multiple vertex sources.

Required Associated Types§

Iterator that enumerates each source.

Required Methods§

Iterates over the VerticesSource.

Implementations on Foreign Types§

Implementors§