pub struct AnalyzedField {
pub length: u64,
pub terms: BTreeMap<TokenTermKey, Vec<TokenOccurrence>>,
pub final_offsets: TokenOffsets,
pub final_position_increment: u32,
}Fields§
§length: u64§terms: BTreeMap<TokenTermKey, Vec<TokenOccurrence>>§final_offsets: TokenOffsets§final_position_increment: u32Trait Implementations§
Source§impl Clone for AnalyzedField
impl Clone for AnalyzedField
Source§fn clone(&self) -> AnalyzedField
fn clone(&self) -> AnalyzedField
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 AnalyzedField
impl Debug for AnalyzedField
impl Eq for AnalyzedField
Source§impl PartialEq for AnalyzedField
impl PartialEq for AnalyzedField
impl StructuralPartialEq for AnalyzedField
Auto Trait Implementations§
impl Freeze for AnalyzedField
impl RefUnwindSafe for AnalyzedField
impl Send for AnalyzedField
impl Sync for AnalyzedField
impl Unpin for AnalyzedField
impl UnsafeUnpin for AnalyzedField
impl UnwindSafe for AnalyzedField
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