Struct StrSearcher
struct StrSearcher<'a, 'b> { ... }
Associated type for <&str as Pattern>::Searcher<'a>.
Implementations
impl<'a, 'b> Clone for StrSearcher<'a, 'b>
fn clone(self: &Self) -> StrSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<'a, 'b> Freeze for StrSearcher<'a, 'b>
impl<'a, 'b> RefUnwindSafe for StrSearcher<'a, 'b>
impl<'a, 'b> ReverseSearcher for StrSearcher<'a, 'b>
fn next_back(self: &mut Self) -> SearchStepfn next_match_back(self: &mut Self) -> Option<(usize, usize)>
impl<'a, 'b> Searcher for StrSearcher<'a, 'b>
fn haystack(self: &Self) -> &'a strfn next(self: &mut Self) -> SearchStepfn next_match(self: &mut Self) -> Option<(usize, usize)>
impl<'a, 'b> Send for StrSearcher<'a, 'b>
impl<'a, 'b> Sync for StrSearcher<'a, 'b>
impl<'a, 'b> Unpin for StrSearcher<'a, 'b>
impl<'a, 'b> UnwindSafe for StrSearcher<'a, 'b>
impl<T> Any for StrSearcher<'a, 'b>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for StrSearcher<'a, 'b>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for StrSearcher<'a, 'b>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for StrSearcher<'a, 'b>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for StrSearcher<'a, 'b>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for StrSearcher<'a, 'b>
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 StrSearcher<'a, 'b>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for StrSearcher<'a, 'b>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>