Struct regex::SetMatches [] [src]

pub struct SetMatches { /* fields omitted */ }
[]

A set of matches returned by a regex set.

Methods

impl SetMatches
[src]

[]

Whether this set contains any matches.

[]

Whether the regex at the given index matched.

The index for a regex is determined by its insertion order upon the initial construction of a RegexSet, starting at 0.

Panics

If regex_index is greater than or equal to self.len().

[]

The total number of regexes in the set that created these matches.

[]

Returns an iterator over indexes in the regex that matched.

Trait Implementations

impl Clone for SetMatches
[src]

[]

Returns a copy of the value. Read more

[]

Performs copy-assignment from source. Read more

impl Debug for SetMatches
[src]

[]

Formats the value using the given formatter.

impl IntoIterator for SetMatches
[src]

Which kind of iterator are we turning this into?

The type of the elements being iterated over.

[]

Creates an iterator from a value. Read more

impl<'a> IntoIterator for &'a SetMatches
[src]

Which kind of iterator are we turning this into?

The type of the elements being iterated over.

[]

Creates an iterator from a value. Read more