[][src]Enum rustfst::algorithms::compose::matchers::IterItemMatcher

pub enum IterItemMatcher<W: Semiring> {
    Tr(Tr<W>),
    EpsLoop,
}

Variants

Tr(Tr<W>)
EpsLoop

Implementations

impl<W: Semiring> IterItemMatcher<W>[src]

pub fn into_tr(self, state: StateId, match_type: MatchType) -> Result<Tr<W>>[src]

Trait Implementations

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

Auto Trait Implementations

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

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

impl<W> Sync for IterItemMatcher<W>

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

impl<W> UnwindSafe for IterItemMatcher<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.