pub struct SearchResult {
pub query: String,
pub translation_entries: Vec<TranslationEntry>,
pub code_references: Vec<CodeReference>,
}Expand description
Result of a search operation
Fields§
§query: String§translation_entries: Vec<TranslationEntry>§code_references: Vec<CodeReference>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SearchResult
impl RefUnwindSafe for SearchResult
impl Send for SearchResult
impl Sync for SearchResult
impl Unpin 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