pub struct SearchResult {
pub path: String,
pub kind: String,
pub signature: String,
pub doc_summary: String,
pub feature_requirements: Vec<String>,
pub score: f32,
}Fields§
§path: String§kind: String§signature: String§doc_summary: String§feature_requirements: Vec<String>§score: f32Auto Trait Implementations§
impl Freeze for SearchResult
impl RefUnwindSafe for SearchResult
impl Send for SearchResult
impl Sync for SearchResult
impl Unpin for SearchResult
impl UnsafeUnpin for SearchResult
impl UnwindSafe for SearchResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more