Struct regex::bytes::SetMatchesIter
pub struct SetMatchesIter<'a>(_);
Documentation
A borrowed iterator over the set of matches from a regex set.
The lifetime 'a
refers to the lifetime of a SetMatches
value.
This will always produces matches in ascending order of index, where the index corresponds to the index of the regex that matched with respect to its position when initially building the set.
Trait Implementations
impl<'a> Clone for SetMatchesIter<'a>
fn clone(&Self) -> SetMatchesIter<'a>
impl<'a> Debug for SetMatchesIter<'a>
fn fmt(&Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<'a> DoubleEndedIterator for SetMatchesIter<'a>
impl<'a> FusedIterator for SetMatchesIter<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for SetMatchesIter<'a>
impl<'a> Send for SetMatchesIter<'a>
impl<'a> Sync for SetMatchesIter<'a>
impl<'a> Unpin for SetMatchesIter<'a>
impl<'a> UnwindSafe for SetMatchesIter<'a>
Blanket Implementations
impl<T> BorrowMut<T> for T
where
T: ?Sized,
where
T: ?Sized,
fn borrow_mut(&mut Self) -> &mut T