Struct elasticlunr::document_store::DocumentStore[][src]

pub struct DocumentStore {
    pub save: bool,
    pub docs: BTreeMap<String, BTreeMap<String, String>>,
    pub doc_info: BTreeMap<String, BTreeMap<String, usize>>,
    pub length: usize,
}

The document store saves the complete text of each item saved to the index, if enabled. Most users do not need to use this type directly.

Fields

Methods

impl DocumentStore
[src]

Trait Implementations

impl Debug for DocumentStore
[src]

Formats the value using the given formatter. Read more

impl Clone for DocumentStore
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations