Struct regex::bytes::CaptureMatches
pub struct CaptureMatches<'r, 't>(_);
Documentation
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.
Trait Implementations
impl<'r, 't> Debug for CaptureMatches<'r, 't>
fn fmt(&Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<'r, 't> FusedIterator for CaptureMatches<'r, 't>
Auto Trait Implementations
impl<'r, 't> !Sync for CaptureMatches<'r, 't>
impl<'r, 't> RefUnwindSafe for CaptureMatches<'r, 't>
impl<'r, 't> Send for CaptureMatches<'r, 't>
impl<'r, 't> Unpin for CaptureMatches<'r, 't>
impl<'r, 't> UnwindSafe for CaptureMatches<'r, 't>
Blanket Implementations
impl<T> BorrowMut<T> for T
where
T: ?Sized,
where
T: ?Sized,
fn borrow_mut(&mut Self) -> &mut T