pub enum SearchStep {
Match(usize, usize),
Reject(usize, usize),
Done,
}Result of calling Searcher::next() or ReverseSearcher::next_back().
Variants
Match | Expresses that a match of the pattern has been found at
haystack[a..b].
|
Reject | Expresses that haystack[a..b] has been rejected as a possible match
of the pattern.
Note that there might be more than one Reject between two Matches,
there is no requirement for them to be combined into one.
|
Done | Expresses that every byte of the haystack has been visted, ending
the iteration.
|
Trait Implementations
Derived Implementations
Keyboard shortcuts
- ?
- Show this help dialog
- S
- Focus the search field
- ⇤
- Move up in search results
- ⇥
- Move down in search results
- ⏎
- Go to active search result
Search tricks
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct, enum,
trait, typedef (or
tdef).