[][src]Struct jieba_rs::Jieba

pub struct Jieba { /* fields omitted */ }

Jieba segmentation

Implementations

impl Jieba[src]

pub fn empty() -> Self[src]

Create a new instance with empty dict

pub fn new() -> Self[src]

Create a new instance with embed dict

Requires default-dict feature to be enabled.

pub fn with_dict<R: BufRead>(dict: &mut R) -> Result<Self, Error>[src]

Create a new instance with dict

pub fn add_word(
    &mut self,
    word: &str,
    freq: Option<usize>,
    tag: Option<&str>
) -> usize
[src]

Add word to dict, return freq

freq: if None, will be given by suggest_freq

tag: if None, will be given ""

pub fn load_dict<R: BufRead>(&mut self, dict: &mut R) -> Result<(), Error>[src]

Load dictionary

pub fn suggest_freq(&self, segment: &str) -> usize[src]

Suggest word frequency to force the characters in a word to be joined or splitted.

pub fn cut<'a>(&self, sentence: &'a str, hmm: bool) -> Vec<&'a str>[src]

Cut the input text

Params

sentence: input text

hmm: enable HMM or not

pub fn cut_all<'a>(&self, sentence: &'a str) -> Vec<&'a str>[src]

Cut the input text, return all possible words

Params

sentence: input text

Cut the input text in search mode

Params

sentence: input text

hmm: enable HMM or not

pub fn tokenize<'a>(
    &self,
    sentence: &'a str,
    mode: TokenizeMode,
    hmm: bool
) -> Vec<Token<'a>>
[src]

Tokenize

Params

sentence: input text

mode: tokenize mode

hmm: enable HMM or not

pub fn tag<'a>(&'a self, sentence: &'a str, hmm: bool) -> Vec<Tag<'_>>[src]

Tag the input text

Params

sentence: input text

hmm: enable HMM or not

Trait Implementations

impl Clone for Jieba[src]

impl Debug for Jieba[src]

impl Default for Jieba[src]

Auto Trait Implementations

impl RefUnwindSafe for Jieba

impl Send for Jieba

impl Sync for Jieba

impl Unpin for Jieba

impl UnwindSafe for Jieba

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> 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.