An iterator that yields all non-overlapping capture groups matching a particular regular expression. The iterator stops when no more matches can be found. `'r` is the lifetime of the compiled regular expression and `'t` is the lifetime of the matched byte string.
| 713 | /// `'r` is the lifetime of the compiled regular expression and `'t` is the |
| 714 | /// lifetime of the matched byte string. |
| 715 | pub struct CaptureMatches<'r, 't>(re_trait::CaptureMatches<'t, ExecNoSync<'r>>); |
| 716 | |
| 717 | impl<'r, 't> Iterator for CaptureMatches<'r, 't> { |
| 718 | type Item = Captures<'t>; |