[][src]Type Definition path_iter::Item

type Item<T> = Either<T, Empty>;

Used to make end of path disambiguous from path composition.

Implementations

impl<T> Item<T>[src]

pub fn inner(self) -> T[src]

Gets the inner value.

Trait Implementations

impl<T, U, V, I> HigherIntoIterator<Either<U, Empty>> for Item<T> where
    Item<T>: IntoIterator<Item = V, IntoIter = I>,
    I: Iterator<Item = V>, 
[src]

type Item = V

The item type generated by the iterator.

type IntoIter = I

The iterator type.

impl<T> IntoIterator for Item<T>[src]

type Item = T

The type of the elements being iterated over.

type IntoIter = <Option<T> as IntoIterator>::IntoIter

Which kind of iterator are we turning this into?