pub struct LexicalFieldContribution {
pub path: FieldPath,
pub term_frequency: u64,
pub field_length: u64,
}Expand description
One field contribution for one query term.
Fields§
§path: FieldPathCanonical field path.
term_frequency: u64Raw term frequency.
field_length: u64Field token length.
Trait Implementations§
Source§impl Clone for LexicalFieldContribution
impl Clone for LexicalFieldContribution
Source§fn clone(&self) -> LexicalFieldContribution
fn clone(&self) -> LexicalFieldContribution
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 LexicalFieldContribution
impl Debug for LexicalFieldContribution
impl Eq for LexicalFieldContribution
Source§impl PartialEq for LexicalFieldContribution
impl PartialEq for LexicalFieldContribution
impl StructuralPartialEq for LexicalFieldContribution
Auto Trait Implementations§
impl Freeze for LexicalFieldContribution
impl RefUnwindSafe for LexicalFieldContribution
impl Send for LexicalFieldContribution
impl Sync for LexicalFieldContribution
impl Unpin for LexicalFieldContribution
impl UnsafeUnpin for LexicalFieldContribution
impl UnwindSafe for LexicalFieldContribution
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