Crate stable_pattern
source ·Expand description
Stable, no_std port of std::str::pattern, Rust 1.52.
Structs
- Associated type for
<F as Pattern<'a>>::Searcher. - Associated type for
<char as Pattern<'a>>::Searcher. - Associated type for
<&[char] as Pattern<'a>>::Searcher. - Created with the method
match_indices. - Created with the method
matches. - Created with the method
rmatch_indices. - Created with the method
rmatches. - Created with the method
rsplit. - Created with the method
rsplitn. - Created with the method
rsplit_terminator. - Created with the method
split. - Created with the method
splitn. - Created with the method
split_terminator. - Associated type for
<&str as Pattern<'a>>::Searcher.
Enums
- Result of calling
Searcher::next()orReverseSearcher::next_back().
Traits
- A marker trait to express that a
ReverseSearchercan be used for aDoubleEndedIteratorimplementation. - A string pattern.
- A reverse searcher for a string pattern.
- A searcher for a string pattern.