mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-04-14 10:31:40 +02:00
6 lines
100 B
Rust
6 lines
100 B
Rust
use crate::rank::Document;
|
|
|
|
pub trait Search {
|
|
fn search(&self, text: &str) -> Vec<Document>;
|
|
}
|