Struct core::str::pattern::StrSearcher
source · pub struct StrSearcher<'a, 'b> { /* private fields */ }
🔬This is a nightly-only experimental API. (
pattern
#27721)Expand description
<&str as Pattern<'a>>::Searcher
的关联类型。
Trait Implementations§
source§impl<'a, 'b> Clone for StrSearcher<'a, 'b>
impl<'a, 'b> Clone for StrSearcher<'a, 'b>
source§fn clone(&self) -> StrSearcher<'a, 'b>
fn clone(&self) -> StrSearcher<'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 StrSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
source§impl<'a, 'b> ReverseSearcher<'a> for StrSearcher<'a, 'b>
impl<'a, 'b> ReverseSearcher<'a> for StrSearcher<'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 StrSearcher<'a, 'b>
impl<'a, 'b> Searcher<'a> for StrSearcher<'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