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 string.
| 1072 | /// `'r` is the lifetime of the compiled regular expression and `'t` is the |
| 1073 | /// lifetime of the matched string. |
| 1074 | pub struct CaptureMatches<'r, 't>(re_trait::CaptureMatches<'t, ExecNoSyncStr<'r>>); |
| 1075 | |
| 1076 | impl<'r, 't> Iterator for CaptureMatches<'r, 't> { |
| 1077 | type Item = Captures<'t>; |