rustfst 1.3.0

Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs).
Documentation
1
2
3
4
5
6
7
8
use crate::{Label, StateId};

#[derive(Hash, Debug, PartialOrd, PartialEq, Eq, Clone)]
pub struct Element {
    pub ilabel: Label,
    pub olabel: Label,
    pub nextstate: StateId,
}