Struct Finder
struct Finder { ... }
An architecture independent "packed pair" finder.
This finder picks two bytes that it believes have high predictive power for indicating an overall match of a needle. At search time, it reports offsets where the needle could match based on whether the pair of bytes it chose match.
This is architecture independent because it utilizes memchr to find the
occurrence of one of the bytes in the pair, and then checks whether the
second byte matches. If it does, in the case of Finder::find_prefilter,
the location at which the needle could match is returned.
It is generally preferred to use architecture specific routines for a "packed pair" prefilter, but this can be a useful fallback when the architecture independent routines are unavailable.
Implementations
impl Finder
fn new(needle: &[u8]) -> Option<Finder>Create a new prefilter that reports possible locations where the given needle matches.
fn with_pair(needle: &[u8], pair: Pair) -> Option<Finder>Create a new prefilter using the pair given.
If the prefilter could not be constructed, then
Noneis returned.This constructor permits callers to control precisely which pair of bytes is used as a predicate.
fn find_prefilter(self: &Self, haystack: &[u8]) -> Option<usize>Run this finder on the given haystack as a prefilter.
If a candidate match is found, then an offset where the needle could begin in the haystack is returned.
fn pair(self: &Self) -> &PairReturns the pair of offsets (into the needle) used to check as a predicate before confirming whether a needle exists at a particular position.
impl Clone for Finder
fn clone(self: &Self) -> Finder
impl Copy for Finder
impl Debug for Finder
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl Freeze for Finder
impl RefUnwindSafe for Finder
impl Send for Finder
impl Sync for Finder
impl Unpin for Finder
impl UnwindSafe for Finder
impl<T> Any for Finder
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Finder
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Finder
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for Finder
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for Finder
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for Finder
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for Finder
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for Finder
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Finder
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>