[][src]Struct darts::DoubleArrayTrieBuilder

pub struct DoubleArrayTrieBuilder<'a> { /* fields omitted */ }

Build a Double Arrary Trie from a series of strings.

Methods

impl<'a> DoubleArrayTrieBuilder<'a>[src]

pub fn new() -> DoubleArrayTrieBuilder<'a>[src]

pub fn progress<F>(self, func: F) -> DoubleArrayTrieBuilder<'a> where
    F: 'static + Fn(usize, usize), 
[src]

Set callback to inspect trie building progress.

pub fn build(self, keys: &'a [&str]) -> DoubleArrayTrie[src]

Start the building process from root layer, and recursively calling fetch and insert to construct the arrays

Auto Trait Implementations

impl<'a> !Send for DoubleArrayTrieBuilder<'a>

impl<'a> !Sync for DoubleArrayTrieBuilder<'a>

Blanket Implementations

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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