aboutsummaryrefslogtreecommitdiff
path: root/src/searchresult.rs
blob: cc882ffd0fa63277fa87d34a9295b50b33f976ab (plain)
1
2
3
4
5
6
/// This struct is returned by the index::Index::search
/// function.
pub struct SearchResult {
    pub priority : u64,
    pub path : String
}