aboutsummaryrefslogtreecommitdiff
path: root/src/searchresult.rs
blob: 23e8d02f3e3fab5ffd08675d3a5e37d62484b24c (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 : u64,
    pub path : String
}