[][src]Struct mecab::Tagger

pub struct Tagger { /* fields omitted */ }

Methods

impl Tagger[src]

pub fn new<T: Into<Vec<u8>>>(arg: T) -> Tagger[src]

pub fn get_last_error(&self) -> String[src]

pub fn partial(&self) -> bool[src]

pub fn set_partial(&self, partial: i32)[src]

pub fn theta(&self) -> f32[src]

pub fn set_theata(&self, theta: f32)[src]

pub fn lattice_level(&self) -> i32[src]

pub fn set_lattice_level(&self, level: i32)[src]

pub fn all_morphs(&self) -> bool[src]

pub fn set_all_morphs(&self, all_morphs: i32)[src]

pub fn parse(&self, latice: &Lattice) -> bool[src]

pub fn parse_str<T: Into<Vec<u8>>>(&self, input: T) -> String[src]

pub fn parse_to_node<T: Into<Vec<u8>>>(&mut self, input: T) -> Node[src]

pub fn parse_nbest<T: Into<Vec<u8>>>(&self, n: usize, input: T) -> String[src]

pub fn parse_nbest_init<T: Into<Vec<u8>>>(&mut self, input: T) -> bool[src]

pub fn next(&self) -> Option<String>[src]

pub fn next_node(&self) -> Option<Node>[src]

pub fn format_node(&self, node: Node) -> String[src]

pub fn dictionary_info(&self) -> DictionaryInfo[src]

Trait Implementations

impl Drop for Tagger[src]

Auto Trait Implementations

impl !Send for Tagger

impl !Sync for Tagger

impl Unpin for Tagger

impl UnwindSafe for Tagger

impl RefUnwindSafe for Tagger

Blanket Implementations

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

impl<T> From<T> for 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> 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]