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

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

Trait Implementations

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

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

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

type MatcherData = ()

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

type F = M::F

type Iter = M::Iter

Auto Trait Implementations

impl<W, M, MFT> RefUnwindSafe for TrLookAheadMatcher<W, M, MFT> where
    M: RefUnwindSafe,
    MFT: RefUnwindSafe,
    <M as Matcher<W>>::F: RefUnwindSafe

impl<W, M, MFT> Send for TrLookAheadMatcher<W, M, MFT> where
    M: Send,
    MFT: Send,
    <M as Matcher<W>>::F: Send + Sync

impl<W, M, MFT> Sync for TrLookAheadMatcher<W, M, MFT> where
    M: Sync,
    MFT: Sync,
    <M as Matcher<W>>::F: Send + Sync

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

impl<W, M, MFT> UnwindSafe for TrLookAheadMatcher<W, M, MFT> where
    M: UnwindSafe,
    MFT: UnwindSafe,
    <M as Matcher<W>>::F: RefUnwindSafe

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.