Struct FindIter
struct FindIter<'s, 'h> { ... }
An iterator over non-overlapping matches from a packed searcher.
The lifetime 's refers to the lifetime of the underlying Searcher,
while the lifetime 'h refers to the lifetime of the haystack being
searched.
Implementations
impl<'s, 'h> Debug for FindIter<'s, 'h>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<'s, 'h> Freeze for FindIter<'s, 'h>
impl<'s, 'h> Iterator for FindIter<'s, 'h>
fn next(self: &mut Self) -> Option<Match>
impl<'s, 'h> RefUnwindSafe for FindIter<'s, 'h>
impl<'s, 'h> Send for FindIter<'s, 'h>
impl<'s, 'h> Sync for FindIter<'s, 'h>
impl<'s, 'h> Unpin for FindIter<'s, 'h>
impl<'s, 'h> UnsafeUnpin for FindIter<'s, 'h>
impl<'s, 'h> UnwindSafe for FindIter<'s, 'h>
impl<I> IntoIterator for FindIter<'s, 'h>
fn into_iter(self: Self) -> I
impl<T> Any for FindIter<'s, 'h>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for FindIter<'s, 'h>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for FindIter<'s, 'h>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for FindIter<'s, 'h>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for FindIter<'s, 'h>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for FindIter<'s, 'h>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for FindIter<'s, 'h>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>