[][src]Struct sudachiclone::dictionary::Dictionary

pub struct Dictionary { /* fields omitted */ }

Methods

impl Dictionary[src]

pub fn new(
    grammar: &Arc<Mutex<Grammar>>,
    lexicon_set: &Arc<Mutex<LexiconSet>>,
    input_text_plugins: &Arc<Vec<InputTextPlugin>>,
    oov_provider_plugins: &Arc<Vec<OovProviderPlugin>>,
    path_rewrite_plugins: &Arc<Vec<PathRewritePlugin>>
) -> Dictionary
[src]

pub fn get_grammar(&self) -> Arc<Mutex<Grammar>>[src]

pub fn setup(
    config_path: Option<&str>,
    resource_dir: Option<&str>
) -> Result<Dictionary, DictionaryErr>
[src]

pub fn create(&self) -> Tokenizer[src]

pub fn read_system_dictionary<P: AsRef<Path>>(
    filename: P
) -> Result<BinaryDictionary, ReadDictionaryErr>
[src]

pub fn read_user_dictionary<P: AsRef<Path>>(
    filename: P,
    lexicon_set: &Arc<Mutex<LexiconSet>>
) -> Result<BinaryDictionary, DictionaryErr>
[src]

pub fn read_character_definition<P: AsRef<Path>>(
    filename: P
) -> Result<CharacterCategory, ReadCharacterDefinitionErr>
[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>,