[][src]Struct rustfst::algorithms::FinalTr

pub struct FinalTr<W: Semiring> {
    pub ilabel: Label,
    pub olabel: Label,
    pub weight: W,
}

Struct used to map final weights when performing a transition mapping. It will always be of the form (EPS_LABEL, EPS_LABEL, final_weight) where final_weight is the final_weight of the current state.

If the mapper modifies the input label or output one, a super final state will need to be created.

Fields

ilabel: Label

Input label. Default to EPS_LABEL.

olabel: Label

Output label. Default to EPS_LABEL.

weight: W

Weight. Default to the final weight of the current state.

Trait Implementations

impl<W: Clone + Semiring> Clone for FinalTr<W>[src]

impl<W: Debug + Semiring> Debug for FinalTr<W>[src]

Auto Trait Implementations

impl<W> RefUnwindSafe for FinalTr<W> where
    W: RefUnwindSafe

impl<W> Send for FinalTr<W> where
    W: Send

impl<W> Sync for FinalTr<W>

impl<W> Unpin for FinalTr<W> where
    W: Unpin

impl<W> UnwindSafe for FinalTr<W> where
    W: UnwindSafe

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> Same<T> for T[src]

type Output = T

Should always be Self

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.