Struct memchr::memmem::FinderBuilder
source · pub struct FinderBuilder { /* private fields */ }
Expand description
A builder for constructing non-default forward or reverse memmem finders.
A builder is primarily useful for configuring a substring searcher. Currently, the only configuration exposed is the ability to disable heuristic prefilters used to speed up certain searches.
Implementations§
source§impl FinderBuilder
impl FinderBuilder
sourcepub fn new() -> FinderBuilder
pub fn new() -> FinderBuilder
Create a new finder builder with default settings.
sourcepub fn build_forward<'n, B: ?Sized + AsRef<[u8]>>(
&self,
needle: &'n B,
) -> Finder<'n>
pub fn build_forward<'n, B: ?Sized + AsRef<[u8]>>( &self, needle: &'n B, ) -> Finder<'n>
Build a forward finder using the given needle from the current settings.
sourcepub fn build_forward_with_ranker<'n, R: HeuristicFrequencyRank, B: ?Sized + AsRef<[u8]>>(
&self,
ranker: R,
needle: &'n B,
) -> Finder<'n>
pub fn build_forward_with_ranker<'n, R: HeuristicFrequencyRank, B: ?Sized + AsRef<[u8]>>( &self, ranker: R, needle: &'n B, ) -> Finder<'n>
Build a forward finder using the given needle and a custom heuristic for
determining the frequency of a given byte in the dataset.
See HeuristicFrequencyRank
for more details.
sourcepub fn build_reverse<'n, B: ?Sized + AsRef<[u8]>>(
&self,
needle: &'n B,
) -> FinderRev<'n>
pub fn build_reverse<'n, B: ?Sized + AsRef<[u8]>>( &self, needle: &'n B, ) -> FinderRev<'n>
Build a reverse finder using the given needle from the current settings.
sourcepub fn prefilter(&mut self, prefilter: Prefilter) -> &mut FinderBuilder
pub fn prefilter(&mut self, prefilter: Prefilter) -> &mut FinderBuilder
Configure the prefilter setting for the finder.
See the documentation for Prefilter
for more discussion on why
you might want to configure this.
Trait Implementations§
source§impl Clone for FinderBuilder
impl Clone for FinderBuilder
source§fn clone(&self) -> FinderBuilder
fn clone(&self) -> FinderBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for FinderBuilder
impl Debug for FinderBuilder
source§impl Default for FinderBuilder
impl Default for FinderBuilder
source§fn default() -> FinderBuilder
fn default() -> FinderBuilder
Auto Trait Implementations§
impl Freeze for FinderBuilder
impl RefUnwindSafe for FinderBuilder
impl Send for FinderBuilder
impl Sync for FinderBuilder
impl Unpin for FinderBuilder
impl UnwindSafe for FinderBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)