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

pub struct TermInfo {
    pub doc_freq: u32,
    pub postings_offset: u64,
    pub positions_offset: u64,
    pub positions_inner_offset: u8,
}

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

It consists of

Fields

Number of documents in the segment containing the term

Offset within the postings (.idx) file.

Offset within the position (.pos) file.

Offset within the position block.

Trait Implementations

impl Debug for TermInfo
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for TermInfo
[src]

[src]

Returns the "default value" for a type. Read more

impl Ord for TermInfo
[src]

[src]

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

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl PartialOrd for TermInfo
[src]

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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]

[src]

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

[src]

This method tests for !=.

impl Clone for TermInfo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more