Trait quasi::IntoWrappedRepeat [] [src]

pub trait IntoWrappedRepeat: Sized {
    type Item;
    type IntoIter: Iterator<Item=Self::Item>;
    fn into_wrappable_iter(self) -> Self::IntoIter;

    fn into_wrapped_iter(self) -> IterWrapper<Self::IntoIter> { ... }
}

Associated Types

Required Methods

Provided Methods

Implementors