[][src]Module core::str::pattern

🔬 This is a nightly-only experimental API. (pattern #27721)

API not fully fleshed out and ready to be stabilized

The string Pattern API.

For more details, see the traits Pattern, Searcher, ReverseSearcher, and DoubleEndedSearcher.

Structs

CharPredicateSearcherExperimental

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

CharSearcherExperimental

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

CharSliceSearcherExperimental

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

StrSearcherExperimental

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

Enums

SearchStepExperimental

Result of calling Searcher::next() or ReverseSearcher::next_back().

Traits

DoubleEndedSearcherExperimental

A marker trait to express that a ReverseSearcher can be used for a DoubleEndedIterator implementation.

PatternExperimental

A string pattern.

ReverseSearcherExperimental

A reverse searcher for a string pattern.

SearcherExperimental

A searcher for a string pattern.