pub struct Search {
    pub enable: bool,
    pub limit_results: u32,
    pub teaser_word_count: u32,
    pub use_boolean_and: bool,
    pub boost_title: u8,
    pub boost_hierarchy: u8,
    pub boost_paragraph: u8,
    pub expand: bool,
    pub heading_split_level: u8,
    pub copy_js: bool,
}
Expand description

Configuration of the search functionality of the HTML renderer.

Fields

enable: bool

Enable the search feature. Default: true.

limit_results: u32

Maximum number of visible results. Default: 30.

teaser_word_count: u32

The number of words used for a search result teaser. Default: 30.

use_boolean_and: bool

Define the logical link between multiple search words. If true, all search words must appear in each result. Default: false.

boost_title: u8

Boost factor for the search result score if a search word appears in the header. Default: 2.

boost_hierarchy: u8

Boost factor for the search result score if a search word appears in the hierarchy. The hierarchy contains all titles of the parent documents and all parent headings. Default: 1.

boost_paragraph: u8

Boost factor for the search result score if a search word appears in the text. Default: 1.

expand: bool

True if the searchword micro should match microwave. Default: true.

heading_split_level: u8

Documents are split into smaller parts, separated by headings. This defines, until which level of heading documents should be split. Default: 3. (### This is a level 3 heading)

copy_js: bool

Copy JavaScript files for the search functionality to the output directory? Default: true.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

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

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.