aboutsummaryrefslogtreecommitdiff
path: root/src/searchresult.rs
blob: 06307913690a166342eb2635082e6e25b5c5f668 (plain)
1
2
3
4
5
6
7
/// This struct is returned by the index::Index::search
/// function.
#[derive(Debug, Clone)]
pub struct SearchResult {
    pub priority : u32,
    pub path : String
}