Struct tantivy::postings::TermInfo [] [src]

pub struct TermInfo {
    pub doc_freq: u32,
    pub postings_offset: u32,
    pub positions_offset: u32,
}

TermInfo contains all of the information associated to terms in the .term file.

It consists of * doc_freq : the number of document in the segment containing this term. It is also the length of the posting list associated to this term * postings_offset : an offset in the .idx file addressing the start of the posting list associated to this term.

Fields

Number of documents in the segment containing the term

Offset within the postings (.idx) file.

Offset within the position (.pos) file.

Trait Implementations

impl Debug for TermInfo
[src]

Formats the value using the given formatter.

impl Ord for TermInfo
[src]

This method returns an Ordering between self and other. Read more

impl PartialOrd for TermInfo
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Eq for TermInfo
[src]

impl PartialEq for TermInfo
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for TermInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more