pub struct KnowledgeDocSearchResult {
pub id: String,
pub pack: String,
pub virtual_path: String,
pub title: String,
pub summary: String,
pub kind: String,
pub authority: String,
pub tags: Vec<String>,
pub score: usize,
pub matched: Vec<String>,
pub content: Option<String>,
}Fields§
§id: String§pack: String§virtual_path: String§title: String§summary: String§kind: String§score: usize§matched: Vec<String>§content: Option<String>Trait Implementations§
Source§impl Clone for KnowledgeDocSearchResult
impl Clone for KnowledgeDocSearchResult
Source§fn clone(&self) -> KnowledgeDocSearchResult
fn clone(&self) -> KnowledgeDocSearchResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for KnowledgeDocSearchResult
impl Debug for KnowledgeDocSearchResult
Auto Trait Implementations§
impl Freeze for KnowledgeDocSearchResult
impl RefUnwindSafe for KnowledgeDocSearchResult
impl Send for KnowledgeDocSearchResult
impl Sync for KnowledgeDocSearchResult
impl Unpin for KnowledgeDocSearchResult
impl UnsafeUnpin for KnowledgeDocSearchResult
impl UnwindSafe for KnowledgeDocSearchResult
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