[][src]Trait skim::MatchEngineFactory

pub trait MatchEngineFactory {
    fn create_engine_with_case(
        &self,
        query: &str,
        case: CaseMatching
    ) -> Box<dyn MatchEngine>; fn create_engine(&self, query: &str) -> Box<dyn MatchEngine> { ... } }

Required methods

fn create_engine_with_case(
    &self,
    query: &str,
    case: CaseMatching
) -> Box<dyn MatchEngine>

Loading content...

Provided methods

fn create_engine(&self, query: &str) -> Box<dyn MatchEngine>

Loading content...

Implementors

impl MatchEngineFactory for AndOrEngineFactory[src]

impl MatchEngineFactory for ExactOrFuzzyEngineFactory[src]

impl MatchEngineFactory for RegexEngineFactory[src]

Loading content...