[][src]Trait finalfrontier::DepIter

pub trait DepIter: Sized {
    fn normalized(self) -> Normalized<Self>;
fn untyped(self) -> Untyped<Self>;
fn filter_root(self) -> FilterRoot<Self>; }

Trait offering adapters for DependencyIterator.

Required methods

fn normalized(self) -> Normalized<Self>

Normalizes the form in Dependency through lower-casing.

fn untyped(self) -> Untyped<Self>

Maps Dependency::Typed to Dependency::Untyped.

fn filter_root(self) -> FilterRoot<Self>

Removes Dependencys with form == "<root>"

Loading content...

Implementors

impl<I> DepIter for I where
    I: Iterator<Item = (usize, Dependency)>, 
[src]

Loading content...