pub struct ChunkMatch {
pub id: String,
pub content: String,
pub element_type: String,
pub profile: String,
pub score: f32,
pub match_type: MatchType,
}Expand description
Search result match
Fields§
§id: String§content: String§element_type: String§profile: String§score: f32§match_type: MatchTypeTrait Implementations§
Source§impl Clone for ChunkMatch
impl Clone for ChunkMatch
Source§fn clone(&self) -> ChunkMatch
fn clone(&self) -> ChunkMatch
Returns a duplicate of the value. Read more
1.0.0 · 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 ChunkMatch
impl Debug for ChunkMatch
Source§impl PartialEq for ChunkMatch
impl PartialEq for ChunkMatch
impl StructuralPartialEq for ChunkMatch
Auto Trait Implementations§
impl Freeze for ChunkMatch
impl RefUnwindSafe for ChunkMatch
impl Send for ChunkMatch
impl Sync for ChunkMatch
impl Unpin for ChunkMatch
impl UnwindSafe for ChunkMatch
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