Struct alloc::str::pattern::CharSliceSearcher
source · pub struct CharSliceSearcher<'a, 'b>(_);
🔬This is a nightly-only experimental API. (
pattern
#27721)Expand description
<&[char] as Pattern<'a>>::Searcher
的关联类型。
Trait Implementations§
source§impl<'a, 'b> Clone for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Clone for CharSliceSearcher<'a, 'b>
source§fn clone(&self) -> CharSliceSearcher<'a, 'b>
fn clone(&self) -> CharSliceSearcher<'a, 'b>
返回值的副本。 Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
从
source
执行复制分配。 Read moresource§impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
source§impl<'a, 'b> ReverseSearcher<'a> for CharSliceSearcher<'a, 'b>
impl<'a, 'b> ReverseSearcher<'a> for CharSliceSearcher<'a, 'b>
source§fn next_back(&mut self) -> SearchStep
fn next_back(&mut self) -> SearchStep
🔬This is a nightly-only experimental API. (
pattern
#27721)从后面开始执行下一个搜索步骤。 Read more
source§fn next_match_back(&mut self) -> Option<(usize, usize)>
fn next_match_back(&mut self) -> Option<(usize, usize)>
🔬This is a nightly-only experimental API. (
pattern
#27721)查找下一个
Match
结果。
请参见 next_back()
。source§fn next_reject_back(&mut self) -> Option<(usize, usize)>
fn next_reject_back(&mut self) -> Option<(usize, usize)>
🔬This is a nightly-only experimental API. (
pattern
#27721)查找下一个
Reject
结果。
请参见 next_back()
。source§impl<'a, 'b> Searcher<'a> for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Searcher<'a> for CharSliceSearcher<'a, 'b>
source§fn haystack(&self) -> &'a str
fn haystack(&self) -> &'a str
🔬This is a nightly-only experimental API. (
pattern
#27721)要在其中搜索的底层字符串的 Getter Read more
source§fn next(&mut self) -> SearchStep
fn next(&mut self) -> SearchStep
🔬This is a nightly-only experimental API. (
pattern
#27721)从头开始执行下一个搜索步骤。 Read more
impl<'a, 'b> DoubleEndedSearcher<'a> for CharSliceSearcher<'a, 'b>
Auto Trait Implementations§
impl<'a, 'b> RefUnwindSafe for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>
impl<'a, 'b> UnwindSafe for CharSliceSearcher<'a, 'b>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
从拥有的值中借用。 Read more