Struct fallible_iterator::Chain
[−]
[src]
pub struct Chain<T, U> { // some fields omitted }
An iterator which yields the elements of one iterator followed by another.
pub struct Chain<T, U> { // some fields omitted }
An iterator which yields the elements of one iterator followed by another.
impl<T, U> FallibleIterator for Chain<T, U> where T: FallibleIterator, U: FallibleIterator<Item=T::Item, Error=T::Error>
type Item = T::Item
type Error = T::Error
fn next(&mut self) -> Result<Option<T::Item>, T::Error>
fn size_hint(&self) -> (usize, Option<usize>)
fn count(self) -> Result<usize, T::Error>
fn by_ref(&mut self) -> &mut Self where Self: Sized
fn chain<I>(self, it: I) -> Chain<Self, I> where I: IntoFallibleIterator<Item=Self::Item, Error=Self::Error>, Self: Sized
fn cloned<'a, T>(self) -> Cloned<Self> where Self: Sized + FallibleIterator<Item=&'a T>, T: 'a + Clone
fn collect<T>(self) -> Result<T, Self::Error> where T: FromFallibleIterator<Self::Item>, Self: Sized
fn enumerate(self) -> Enumerate<Self> where Self: Sized
fn fuse(self) -> Fuse<Self> where Self: Sized
fn last(self) -> Result<Option<Self::Item>, Self::Error> where Self: Sized
fn map<B, F>(self, f: F) -> Map<Self, F> where F: FnMut(Self::Item) -> B, Self: Sized
fn nth(&mut self, n: usize) -> Result<Option<Self::Item>, Self::Error>
fn peekable(self) -> Peekable<Self> where Self: Sized
fn rev(self) -> Rev<Self> where Self: Sized + DoubleEndedFallibleIterator
fn take(self, n: usize) -> Take<Self> where Self: Sized
impl<T, U> DoubleEndedFallibleIterator for Chain<T, U> where T: DoubleEndedFallibleIterator, U: DoubleEndedFallibleIterator<Item=T::Item, Error=T::Error>
impl<T: Debug, U: Debug> Debug for Chain<T, U>