[][src]Struct sudachiclone::morpheme_list::MorphemeList

pub struct MorphemeList { /* fields omitted */ }

Methods

impl MorphemeList[src]

pub fn new(
    input_text: UTF8InputText,
    grammar: Arc<Mutex<Grammar>>,
    path: Vec<Arc<Mutex<LatticeNode>>>
) -> MorphemeList
[src]

pub fn get_start(&self, index: usize) -> usize[src]

pub fn get_end(&self, index: usize) -> usize[src]

pub fn get_surface(&self, index: usize) -> String[src]

pub fn get_internal_cost(&self) -> i16[src]

pub fn len(&self) -> usize[src]

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

pub fn iter(&self) -> MorphemeIterator[src]

pub fn get_word_info(&self, index: usize) -> WordInfo[src]

pub fn get(&self, index: usize) -> Option<Morpheme>[src]

Trait Implementations

impl IntoIterator for MorphemeList[src]

type Item = Morpheme

The type of the elements being iterated over.

type IntoIter = MorphemeIntoIterator

Which kind of iterator are we turning this into?

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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