Struct regex::bytes::SetMatches [] [src]

pub struct SetMatches { /* fields omitted */ }

A set of matches returned by a regex set.

Methods

impl SetMatches
[src]

[src]

Whether this set contains any matches.

[src]

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().

[src]

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

Important traits for SetMatchesIter<'a>
[src]

Returns an iterator over indexes in the regex that matched.

Trait Implementations

impl Clone for SetMatches
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SetMatches
[src]

[src]

Formats the value using the given formatter. Read more

impl IntoIterator for SetMatches
[src]

Which kind of iterator are we turning this into?

The type of the elements being iterated over.

[src]

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.

[src]

Creates an iterator from a value. Read more

Auto Trait Implementations

impl Send for SetMatches

impl Sync for SetMatches