pub struct CharArraySearcher<'a, const N: usize>(_);Expand description
Associated type for <[char; N] as Pattern<'a>>::Searcher.
Trait Implementations
impl<'a, const N: usize> Clone for CharArraySearcher<'a, N>
source
impl<'a, const N: usize> Clone for CharArraySearcher<'a, N>
sourcefn clone(&self) -> CharArraySearcher<'a, N>
source
fn clone(&self) -> CharArraySearcher<'a, N>
sourceReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0 · source
fn clone_from(&mut self, source: &Self)
1.0.0 · sourcePerforms copy-assignment from source. Read more
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
source
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
sourceimpl<'a, const N: usize> ReverseSearcher<'a> for CharArraySearcher<'a, N>
source
impl<'a, const N: usize> ReverseSearcher<'a> for CharArraySearcher<'a, N>
sourcefn next_back(&mut self) -> SearchStep
source
fn next_back(&mut self) -> SearchStep
sourcePerforms the next search step starting from the back. Read more
fn next_match_back(&mut self) -> Option<(usize, usize)>
source
fn next_match_back(&mut self) -> Option<(usize, usize)>
sourceFinds the next Match result.
See next_back(). Read more
impl<'a, const N: usize> Searcher<'a> for CharArraySearcher<'a, N>
source
impl<'a, const N: usize> Searcher<'a> for CharArraySearcher<'a, N>
sourceAuto Trait Implementations
impl<'a, const N: usize> RefUnwindSafe for CharArraySearcher<'a, N>
impl<'a, const N: usize> Send for CharArraySearcher<'a, N>
impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>
impl<'a, const N: usize> Unpin for CharArraySearcher<'a, N>
impl<'a, const N: usize> UnwindSafe for CharArraySearcher<'a, N>
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
source
impl<T> BorrowMut<T> for T where
T: ?Sized,
sourcefn borrow_mut(&mut self) -> &mut T
const: unstable · source
fn borrow_mut(&mut self) -> &mut T
const: unstable · sourceMutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
source
impl<T> ToOwned for T where
T: Clone,
sourcetype Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
source
fn clone_into(&self, target: &mut T)
sourceUses borrowed data to replace owned data, usually by cloning. Read more