Trait nommy::IntoBuf[][src]

pub trait IntoBuf {
    type Iter: Iterator;
    fn into_buf(self) -> Buf<Self::Iter>

Notable traits for Buf<I>

impl<I: Iterator> Iterator for Buf<I> type Item = I::Item;
; }

IntoBuf is the equivalent of IntoIterator for a basic implementation of Buffer

Associated Types

type Iter: Iterator[src]

The Iterator type that the Buf type will read from

Loading content...

Required methods

fn into_buf(self) -> Buf<Self::Iter>

Notable traits for Buf<I>

impl<I: Iterator> Iterator for Buf<I> type Item = I::Item;
[src]

Convert the iterator into a Buf

Loading content...

Implementors

impl<I: IntoIterator> IntoBuf for I[src]

type Iter = Self::IntoIter

Loading content...