[][src]Trait rustfst::fst_traits::PathsIterator

pub trait PathsIterator<'a, W> where
    W: Semiring
{ type Iter: Iterator<Item = FstPath<W>>; fn paths_iter(&'a self) -> Self::Iter; }

Trait to iterate over the paths accepted by an FST.

Associated Types

type Iter: Iterator<Item = FstPath<W>>

Loading content...

Required methods

fn paths_iter(&'a self) -> Self::Iter

Loading content...

Implementors

impl<'a, W, F> PathsIterator<'a, W> for F where
    W: Semiring,
    F: 'a + Fst<W>, 
[src]

type Iter = StructPathsIterator<'a, W, F>

Loading content...