Expand description
Stable, no_std
port of std::str::pattern
, Rust 1.52.
Structs§
- Char
Predicate Searcher - Associated type for
<F as Pattern<'a>>::Searcher
. - Char
Searcher - Associated type for
<char as Pattern<'a>>::Searcher
. - Char
Slice Searcher - Associated type for
<&[char] as Pattern<'a>>::Searcher
. - Match
Indices - Created with the method
match_indices
. - Match
Indices Internal - Matches
- Created with the method
matches
. - Matches
Internal - RMatch
Indices - Created with the method
rmatch_indices
. - RMatches
- Created with the method
rmatches
. - RSplit
- Created with the method
rsplit
. - RSplitN
- Created with the method
rsplitn
. - RSplit
Terminator - Created with the method
rsplit_terminator
. - Split
- Created with the method
split
. - Split
Internal - SplitN
- Created with the method
splitn
. - SplitN
Internal - Split
Terminator - Created with the method
split_terminator
. - StrSearcher
- Associated type for
<&str as Pattern<'a>>::Searcher
.
Enums§
- Search
Step - Result of calling
Searcher::next()
orReverseSearcher::next_back()
.
Traits§
- Double
Ended Searcher - A marker trait to express that a
ReverseSearcher
can be used for aDoubleEndedIterator
implementation. - Pattern
- A string pattern.
- Reverse
Searcher - A reverse searcher for a string pattern.
- Searcher
- A searcher for a string pattern.