Trait read_byte_slice::FallibleStreamingIterator [] [src]

pub trait FallibleStreamingIterator {
    type Item: ?Sized;
    type Error;
    fn advance(&mut self) -> Result<(), Self::Error>;
fn get(&self) -> Option<&Self::Item>; fn next(&mut self) -> Result<Option<&Self::Item>, Self::Error> { ... }
fn size_hint(&self) -> (usize, Option<usize>) { ... }
fn all<F>(&mut self, f: F) -> Result<bool, Self::Error>
    where
        F: FnMut(&Self::Item) -> bool
, { ... }
fn any<F>(&mut self, f: F) -> Result<bool, Self::Error>
    where
        F: FnMut(&Self::Item) -> bool
, { ... }
fn by_ref(&mut self) -> &mut Self { ... }
fn count(self) -> Result<usize, Self::Error> { ... }
fn filter<F>(self, f: F) -> Filter<Self, F>
    where
        F: FnMut(&Self::Item) -> bool
, { ... }
fn find<F>(&mut self, f: F) -> Result<Option<&Self::Item>, Self::Error>
    where
        F: FnMut(&Self::Item) -> bool
, { ... }
fn fuse(self) -> Fuse<Self> { ... }
fn map<F, B>(self, f: F) -> Map<Self, F, B>
    where
        F: FnMut(&Self::Item) -> B
, { ... }
fn map_ref<F, B>(self, f: F) -> MapRef<Self, F>
    where
        B: ?Sized,
        F: Fn(&Self::Item) -> &B
, { ... }
fn map_err<F, B>(self, f: F) -> MapErr<Self, F>
    where
        F: Fn(Self::Error) -> B
, { ... }
fn nth(&mut self, n: usize) -> Result<Option<&Self::Item>, Self::Error> { ... }
fn position<F>(&mut self, f: F) -> Result<Option<usize>, Self::Error>
    where
        F: FnMut(&Self::Item) -> bool
, { ... }
fn skip(self, n: usize) -> Skip<Self> { ... }
fn skip_while<F>(self, f: F) -> SkipWhile<Self, F>
    where
        F: FnMut(&Self::Item) -> bool
, { ... }
fn take(self, n: usize) -> Take<Self> { ... }
fn take_while<F>(self, f: F) -> TakeWhile<Self, F>
    where
        F: FnMut(&Self::Item) -> bool
, { ... } }

A fallible, streaming iterator.

Associated Types

The type being iterated over.

The error type of iteration.

Required Methods

Advances the iterator to the next position.

Iterators start just before the first item, so this method should be called before get when iterating.

The behavior of calling this method after get has returned None, or after this method has returned an error is unspecified.

Returns the current element.

The behavior of calling this method before any calls to advance is unspecified.

Provided Methods

Advances the iterator, returning the next element.

The default implementation simply calls advance followed by get.

Returns bounds on the number of remaining elements in the iterator.

Determines if all elements of the iterator satisfy a predicate.

Determines if any elements of the iterator satisfy a predicate.

Borrows an iterator, rather than consuming it.

This is useful to allow the application of iterator adaptors while still retaining ownership of the original adaptor.

Returns the number of remaining elements in the iterator.

Returns an iterator which filters elements by a predicate.

Returns the first element of the iterator which satisfies a predicate.

Returns an iterator which is well-behaved at the beginning and end of iteration.

Returns an iterator which applies a transform to elements.

Returns an iterator which applies a transform to elements.

Unlike map, the the closure provided to this method returns a reference into the original value.

Returns an iterator that applies a transform to errors.

Returns the nth element of the iterator.

Returns the position of the first element matching a predicate.

Returns an iterator which skips the first n elements.

Returns an iterator which skips the first sequence of elements matching a predicate.

Returns an iterator which only returns the first n elements.

Returns an iterator which only returns the first sequence of elements matching a predicate.

Implementations on Foreign Types

impl<'a, I, T, E> FallibleStreamingIterator for Convert<'a, I, T> where
    I: Iterator<Item = Result<&'a T, E>>, 
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl<I> FallibleStreamingIterator for Fuse<I> where
    I: FallibleStreamingIterator
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl<I, F> FallibleStreamingIterator for Filter<I, F> where
    F: FnMut(&<I as FallibleStreamingIterator>::Item) -> bool,
    I: FallibleStreamingIterator
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl<I, F> FallibleStreamingIterator for SkipWhile<I, F> where
    F: FnMut(&<I as FallibleStreamingIterator>::Item) -> bool,
    I: FallibleStreamingIterator
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl<I, F, B> FallibleStreamingIterator for Map<I, F, B> where
    F: FnMut(&<I as FallibleStreamingIterator>::Item) -> B,
    I: FallibleStreamingIterator
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl<I, F, B> FallibleStreamingIterator for MapErr<I, F> where
    F: Fn(<I as FallibleStreamingIterator>::Error) -> B,
    I: FallibleStreamingIterator
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl<I, F> FallibleStreamingIterator for TakeWhile<I, F> where
    F: FnMut(&<I as FallibleStreamingIterator>::Item) -> bool,
    I: FallibleStreamingIterator
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl<'a, I> FallibleStreamingIterator for &'a mut I where
    I: FallibleStreamingIterator + ?Sized
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl<I> FallibleStreamingIterator for Skip<I> where
    I: FallibleStreamingIterator
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl<T, E> FallibleStreamingIterator for Empty<T, E>
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl<I> FallibleStreamingIterator for Take<I> where
    I: FallibleStreamingIterator
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl<I, F, B> FallibleStreamingIterator for MapRef<I, F> where
    B: ?Sized,
    F: Fn(&<I as FallibleStreamingIterator>::Item) -> &B,
    I: FallibleStreamingIterator
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Implementors