[][src]Struct pdb::FrameDataIter

pub struct FrameDataIter<'t> { /* fields omitted */ }

Trait Implementations

impl<'t> Default for FrameDataIter<'t>[src]

impl<'t> Debug for FrameDataIter<'t>[src]

impl<'_> FallibleIterator for FrameDataIter<'_>[src]

type Item = FrameData

The type being iterated over.

type Error = Error

The error type.

default fn size_hint(&self) -> (usize, Option<usize>)[src]

Returns bounds on the remaining length of the iterator. Read more

default fn all<F>(&mut self, f: F) -> Result<bool, Self::Error> where
    F: FnMut(Self::Item) -> bool
[src]

Determines if all elements of this iterator match a predicate.

default fn and_then<F, B>(self, f: F) -> AndThen<Self, F> where
    F: FnMut(Self::Item) -> Result<B, Self::Error>, 
[src]

Returns an iterator which applies a fallible transform to the elements of the underlying iterator. Read more

default fn any<F>(&mut self, f: F) -> Result<bool, Self::Error> where
    F: FnMut(Self::Item) -> bool
[src]

Determines if any element of this iterator matches a predicate.

default fn by_ref(&mut self) -> &mut Self[src]

Borrow an iterator rather than consuming it. Read more

default fn chain<I>(self, it: I) -> Chain<Self, I> where
    I: IntoFallibleIterator<Item = Self::Item, Error = Self::Error>, 
[src]

Returns an iterator which yields the elements of this iterator followed by another. Read more

default fn cloned<'a, T>(self) -> Cloned<Self> where
    Self: FallibleIterator<Item = &'a T>,
    T: 'a + Clone
[src]

Returns an iterator which clones all of its elements.

default fn count(self) -> Result<usize, Self::Error>[src]

Consumes the iterator, returning the number of remaining items.

default fn collect<T>(self) -> Result<T, Self::Error> where
    T: FromFallibleIterator<Self::Item>, 
[src]

Transforms the iterator into a collection. Read more

default fn enumerate(self) -> Enumerate<Self>[src]

Returns an iterator which yields the current iteration count as well as the value. Read more

default fn filter<F>(self, f: F) -> Filter<Self, F> where
    F: FnMut(&Self::Item) -> bool
[src]

Returns an iterator which uses a predicate to determine which values should be yielded. Read more

default fn filter_map<B, F>(self, f: F) -> FilterMap<Self, F> where
    F: FnMut(Self::Item) -> Option<B>, 
[src]

Returns an iterator which both filters and maps.

default fn find<F>(&mut self, f: F) -> Result<Option<Self::Item>, Self::Error> where
    F: FnMut(&Self::Item) -> bool
[src]

Returns the first element of the iterator that matches a predicate.

default fn fuse(self) -> Fuse<Self>[src]

Returns an iterator which yields this iterator's elements and ends after the first Ok(None). Read more

default fn fold<B, F>(self, init: B, f: F) -> Result<B, Self::Error> where
    F: FnMut(B, Self::Item) -> B, 
[src]

Applies a function over the elements of the iterator, producing a single final value. Read more

default fn iterator(self) -> Iterator<Self>[src]

Returns a normal (non-fallible) iterator over Result<Item, Error>.

default fn last(self) -> Result<Option<Self::Item>, Self::Error>[src]

Returns the last element of the iterator.

default fn map<B, F>(self, f: F) -> Map<Self, F> where
    F: FnMut(Self::Item) -> B, 
[src]

Returns an iterator which applies a transform to the elements of the underlying iterator. Read more

default fn map_err<B, F>(self, f: F) -> MapErr<Self, F> where
    F: FnMut(Self::Error) -> B, 
[src]

Returns an iterator which applies a transform to the errors of the underlying iterator. Read more

default fn max(self) -> Result<Option<Self::Item>, Self::Error> where
    Self::Item: Ord
[src]

Returns the maximal element of the iterator.

default fn max_by_key<B, F>(
    self,
    f: F
) -> Result<Option<Self::Item>, Self::Error> where
    B: Ord,
    F: FnMut(&Self::Item) -> B, 
[src]

Returns the element of the iterator which gives the maximum value from the function. Read more

default fn min(self) -> Result<Option<Self::Item>, Self::Error> where
    Self::Item: Ord
[src]

Returns the minimal element of the iterator.

default fn min_by_key<B, F>(
    self,
    f: F
) -> Result<Option<Self::Item>, Self::Error> where
    B: Ord,
    F: FnMut(&Self::Item) -> B, 
[src]

Returns the element of the iterator which gives the minimum value from the function. Read more

default fn nth(&mut self, n: usize) -> Result<Option<Self::Item>, Self::Error>[src]

Returns the nth element of the iterator.

default fn peekable(self) -> Peekable<Self>[src]

Returns an iterator that can peek at the next element without consuming it. Read more

default fn position<F>(&mut self, f: F) -> Result<Option<usize>, Self::Error> where
    F: FnMut(Self::Item) -> bool
[src]

Returns the position of the first element of this iterator that matches a predicate. Read more

default fn rev(self) -> Rev<Self> where
    Self: DoubleEndedFallibleIterator
[src]

Returns an iterator that yields this iterator's items in the opposite order. Read more

default fn take(self, n: usize) -> Take<Self>[src]

Returns an iterator that yields only the first n values of this iterator. Read more

default fn zip<I>(
    self,
    o: I
) -> Zip<Self, <I as IntoFallibleIterator>::IntoIter> where
    I: IntoFallibleIterator<Error = Self::Error>, 
[src]

Returns an iterator that yields pairs of this iterator's and another iterator's values. Read more

default fn cmp<I>(self, other: I) -> Result<Ordering, Self::Error> where
    I: IntoFallibleIterator<Item = Self::Item, Error = Self::Error>,
    Self::Item: Ord
[src]

Lexicographically compares the elements of this iterator to that of another. Read more

default fn partial_cmp<I>(
    self,
    other: I
) -> Result<Option<Ordering>, Self::Error> where
    I: IntoFallibleIterator<Error = Self::Error>,
    Self::Item: PartialOrd<<I as IntoFallibleIterator>::Item>, 
[src]

Lexicographically compares the elements of this iterator to that of another. Read more

default fn eq<I>(self, other: I) -> Result<bool, Self::Error> where
    I: IntoFallibleIterator<Error = Self::Error>,
    Self::Item: PartialEq<<I as IntoFallibleIterator>::Item>, 
[src]

Determines if the elements of this iterator are equal to those of another. Read more

default fn ne<I>(self, other: I) -> Result<bool, Self::Error> where
    I: IntoFallibleIterator<Error = Self::Error>,
    Self::Item: PartialEq<<I as IntoFallibleIterator>::Item>, 
[src]

Determines if the elements of this iterator are not equal to those of another. Read more

default fn lt<I>(self, other: I) -> Result<bool, Self::Error> where
    I: IntoFallibleIterator<Error = Self::Error>,
    Self::Item: PartialOrd<<I as IntoFallibleIterator>::Item>, 
[src]

Determines if the elements of this iterator are lexicographically less than those of another. Read more

default fn le<I>(self, other: I) -> Result<bool, Self::Error> where
    I: IntoFallibleIterator<Error = Self::Error>,
    Self::Item: PartialOrd<<I as IntoFallibleIterator>::Item>, 
[src]

Determines if the elements of this iterator are lexicographically less than or equal to those of another. Read more

default fn gt<I>(self, other: I) -> Result<bool, Self::Error> where
    I: IntoFallibleIterator<Error = Self::Error>,
    Self::Item: PartialOrd<<I as IntoFallibleIterator>::Item>, 
[src]

Determines if the elements of this iterator are lexicographically greater than those of another. Read more

default fn ge<I>(self, other: I) -> Result<bool, Self::Error> where
    I: IntoFallibleIterator<Error = Self::Error>,
    Self::Item: PartialOrd<<I as IntoFallibleIterator>::Item>, 
[src]

Determines if the elements of this iterator are lexicographically greater than or equal to those of another. Read more

Auto Trait Implementations

impl<'t> Send for FrameDataIter<'t>

impl<'t> Sync for FrameDataIter<'t>

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<I> IntoFallibleIterator for I where
    I: FallibleIterator
[src]

type Item = <I as FallibleIterator>::Item

The elements of the iterator.

type Error = <I as FallibleIterator>::Error

The error value of the iterator.

type IntoIter = I

The iterator.