pub struct RegexEngineFactory { /* private fields */ }Implementations§
Source§impl RegexEngineFactory
impl RegexEngineFactory
pub fn builder() -> Self
pub fn rank_builder(self, rank_builder: Arc<RankBuilder>) -> Self
pub fn build(self) -> Self
Trait Implementations§
Source§impl MatchEngineFactory for RegexEngineFactory
impl MatchEngineFactory for RegexEngineFactory
fn create_engine_with_case( &self, query: &str, case: CaseMatching, ) -> Box<dyn MatchEngine>
fn create_engine(&self, query: &str) -> Box<dyn MatchEngine>
Auto Trait Implementations§
impl Freeze for RegexEngineFactory
impl RefUnwindSafe for RegexEngineFactory
impl Send for RegexEngineFactory
impl Sync for RegexEngineFactory
impl Unpin for RegexEngineFactory
impl UnwindSafe for RegexEngineFactory
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
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more