Struct munch::Repeat [] [src]

pub struct Repeat<A, R: Range>(pub A, pub R);

Trait Implementations

impl<A: Copy, R: Copy + Range> Copy for Repeat<A, R>
[src]

impl<A: Clone, R: Clone + Range> Clone for Repeat<A, R>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<A: Debug, R: Debug + Range> Debug for Repeat<A, R>
[src]

Formats the value using the given formatter.

impl<A: PartialEq, R: PartialEq + Range> PartialEq for Repeat<A, R>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<A, R, Input> Parser<Input> for Repeat<A, R> where A: Parser<Input>,
        R: Range,
        Input: Copy
[src]