[][src]Struct pest::iterators::FlatPairs

pub struct FlatPairs<'i, R> { /* fields omitted */ }

An iterator over Pairs. It is created by Pairs::flatten.

Methods

impl<'i, R: RuleType> FlatPairs<'i, R>[src]

Important traits for Tokens<'i, R>
pub fn tokens(self) -> Tokens<'i, R>[src]

Returns the Tokens for these pairs.

Examples

enum Rule {
    a
}

let input = "";
let pairs = pest::state(input, |state| {
    // generating Token pair with Rule::a ...
}).unwrap();
let tokens: Vec<_> = pairs.flatten().tokens().collect();

assert_eq!(tokens.len(), 2);

Trait Implementations

impl<'i, R: Clone> Clone for FlatPairs<'i, R>[src]

impl<'i, R: RuleType> Debug for FlatPairs<'i, R>[src]

impl<'i, R: RuleType> DoubleEndedIterator for FlatPairs<'i, R>[src]

impl<'i, R: RuleType> Iterator for FlatPairs<'i, R>[src]

type Item = Pair<'i, R>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'i, R> !RefUnwindSafe for FlatPairs<'i, R>

impl<'i, R> !Send for FlatPairs<'i, R>

impl<'i, R> !Sync for FlatPairs<'i, R>

impl<'i, R> Unpin for FlatPairs<'i, R>

impl<'i, R> UnwindSafe for FlatPairs<'i, R> where
    R: RefUnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.