Trait FullTextQueriable

Source
pub trait FullTextQueriable<T>
where T: Hash + Eq + Copy,
{ // Required methods fn query(&self, query_string: &str) -> Vec<T>; fn query_bounded(&self, query_string: &str) -> Vec<T>; }

Required Methods§

Source

fn query(&self, query_string: &str) -> Vec<T>

Source

fn query_bounded(&self, query_string: &str) -> Vec<T>

Implementors§

Source§

impl<T> FullTextQueriable<T> for InvertIndex<T>
where T: Hash + Eq + Copy,

Source§

impl<T> FullTextQueriable<T> for MergeIndex<T>
where T: Hash + Eq + Copy,