[][src]Struct rustfst::algorithms::compose::lookahead_matchers::LabelLookAheadMatcher

pub struct LabelLookAheadMatcher<W: Semiring, M: Matcher<W>, MFT> { /* fields omitted */ }

Trait Implementations

impl<W: Clone + Semiring, M: Clone + Matcher<W>, MFT: Clone> Clone for LabelLookAheadMatcher<W, M, MFT>[src]

impl<W: Debug + Semiring, M: Debug + Matcher<W>, MFT: Debug> Debug for LabelLookAheadMatcher<W, M, MFT>[src]

impl<W: Semiring + 'static, M: Matcher<W>, MFT: MatcherFlagsTrait> LookaheadMatcher<W> for LabelLookAheadMatcher<W, M, MFT>[src]

type MatcherData = LabelReachableData

impl<W: Semiring, M: Matcher<W>, MFT: MatcherFlagsTrait> Matcher<W> for LabelLookAheadMatcher<W, M, MFT>[src]

type F = M::F

type Iter = M::Iter

impl<W: PartialEq + Semiring, M: PartialEq + Matcher<W>, MFT: PartialEq> PartialEq<LabelLookAheadMatcher<W, M, MFT>> for LabelLookAheadMatcher<W, M, MFT>[src]

impl<W: Semiring, M: Matcher<W>, MFT> StructuralPartialEq for LabelLookAheadMatcher<W, M, MFT>[src]

Auto Trait Implementations

impl<W, M, MFT> RefUnwindSafe for LabelLookAheadMatcher<W, M, MFT> where
    M: RefUnwindSafe,
    MFT: RefUnwindSafe,
    W: RefUnwindSafe

impl<W, M, MFT> Send for LabelLookAheadMatcher<W, M, MFT> where
    M: Send,
    MFT: Send,
    W: Send

impl<W, M, MFT> Sync for LabelLookAheadMatcher<W, M, MFT> where
    M: Sync,
    MFT: Sync

impl<W, M, MFT> Unpin for LabelLookAheadMatcher<W, M, MFT> where
    M: Unpin,
    MFT: Unpin,
    W: Unpin

impl<W, M, MFT> UnwindSafe for LabelLookAheadMatcher<W, M, MFT> where
    M: UnwindSafe,
    MFT: UnwindSafe,
    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.