Struct syntax::ext::tt::quoted::SequenceRepetition[][src]

pub struct SequenceRepetition {
    pub tts: Vec<TokenTree>,
    pub separator: Option<Token>,
    pub op: KleeneOp,
    pub num_captures: usize,
}

Fields

The sequence of token trees

The optional separator

Whether the sequence can be repeated zero (*), or one or more times (+)

The number of Matchs that appear in the sequence (and subsequences)

Trait Implementations

impl Clone for SequenceRepetition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SequenceRepetition
[src]

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

This method tests for !=.

impl Encodable for SequenceRepetition
[src]

impl Decodable for SequenceRepetition
[src]

impl Debug for SequenceRepetition
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations