[][src]Struct mdbook::config::Search

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,
}

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, seperated 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

impl Clone for Search[src]

impl Default for Search[src]

impl PartialEq<Search> for Search[src]

impl Debug for Search[src]

impl StructuralPartialEq for Search[src]

impl Serialize for Search[src]

impl<'de> Deserialize<'de> for Search where
    Search: Default
[src]

Auto Trait Implementations

impl Send for Search

impl Sync for Search

impl Unpin for Search

impl UnwindSafe for Search

impl RefUnwindSafe for Search

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,