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