Struct CharSearcher

struct CharSearcher<'a> { ... }

Associated type for <char as Pattern>::Searcher<'a>.

Implementations

impl<'a> Clone for CharSearcher<'a>

fn clone(self: &Self) -> CharSearcher<'a>

impl<'a> Debug for CharSearcher<'a>

fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result

impl<'a> DoubleEndedSearcher for CharSearcher<'a>

impl<'a> Freeze for CharSearcher<'a>

impl<'a> RefUnwindSafe for CharSearcher<'a>

impl<'a> ReverseSearcher for CharSearcher<'a>

fn next_back(self: &mut Self) -> SearchStep
fn next_match_back(self: &mut Self) -> Option<(usize, usize)>

impl<'a> Searcher for CharSearcher<'a>

fn haystack(self: &Self) -> &'a str
fn next(self: &mut Self) -> SearchStep
fn next_match(self: &mut Self) -> Option<(usize, usize)>

impl<'a> Send for CharSearcher<'a>

impl<'a> Sync for CharSearcher<'a>

impl<'a> Unpin for CharSearcher<'a>

impl<'a> UnwindSafe for CharSearcher<'a>

impl<T> Any for CharSearcher<'a>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for CharSearcher<'a>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for CharSearcher<'a>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> CloneToUninit for CharSearcher<'a>

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> From for CharSearcher<'a>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for CharSearcher<'a>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for CharSearcher<'a>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for CharSearcher<'a>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>