[][src]Struct rustfst::algorithms::compose::lookahead_filters::PushLabelsComposeFilter

pub struct PushLabelsComposeFilter<W: Semiring, CF: LookAheadComposeFilterTrait<W>, SMT: MatchTypeTrait> where
    CF::M1: LookaheadMatcher<W>,
    CF::M2: LookaheadMatcher<W>, 
{ /* fields omitted */ }

Trait Implementations

impl<W: Clone + Semiring, CF: Clone + LookAheadComposeFilterTrait<W>, SMT: Clone + MatchTypeTrait> Clone for PushLabelsComposeFilter<W, CF, SMT> where
    CF::M1: LookaheadMatcher<W>,
    CF::M2: LookaheadMatcher<W>,
    CF::M1: Clone,
    CF::M2: Clone,
    CF::FS: Clone
[src]

impl<W: Semiring, CF: LookAheadComposeFilterTrait<W>, SMT: MatchTypeTrait> ComposeFilter<W> for PushLabelsComposeFilter<W, CF, SMT> where
    CF::M1: LookaheadMatcher<W>,
    CF::M2: LookaheadMatcher<W>, 
[src]

type M1 = MultiEpsMatcher<W, CF::M1>

type M2 = MultiEpsMatcher<W, CF::M2>

type FS = PairFilterState<CF::FS, IntegerFilterState>

impl<W: Debug + Semiring, CF: Debug + LookAheadComposeFilterTrait<W>, SMT: Debug + MatchTypeTrait> Debug for PushLabelsComposeFilter<W, CF, SMT> where
    CF::M1: LookaheadMatcher<W>,
    CF::M2: LookaheadMatcher<W>,
    CF::M1: Debug,
    CF::M2: Debug,
    CF::FS: Debug
[src]

Auto Trait Implementations

impl<W, CF, SMT> RefUnwindSafe for PushLabelsComposeFilter<W, CF, SMT> where
    CF: RefUnwindSafe,
    SMT: RefUnwindSafe,
    W: RefUnwindSafe,
    <CF as ComposeFilter<W>>::FS: RefUnwindSafe,
    <CF as ComposeFilter<W>>::M1: RefUnwindSafe,
    <CF as ComposeFilter<W>>::M2: RefUnwindSafe

impl<W, CF, SMT> Send for PushLabelsComposeFilter<W, CF, SMT> where
    CF: Send,
    SMT: Send,
    W: Send,
    <CF as ComposeFilter<W>>::FS: Send,
    <CF as ComposeFilter<W>>::M1: Send + Sync,
    <CF as ComposeFilter<W>>::M2: Send + Sync

impl<W, CF, SMT> Sync for PushLabelsComposeFilter<W, CF, SMT> where
    CF: Sync,
    SMT: Sync,
    <CF as ComposeFilter<W>>::FS: Sync,
    <CF as ComposeFilter<W>>::M1: Send + Sync,
    <CF as ComposeFilter<W>>::M2: Send + Sync

impl<W, CF, SMT> Unpin for PushLabelsComposeFilter<W, CF, SMT> where
    CF: Unpin,
    SMT: Unpin,
    W: Unpin,
    <CF as ComposeFilter<W>>::FS: Unpin

impl<W, CF, SMT> UnwindSafe for PushLabelsComposeFilter<W, CF, SMT> where
    CF: UnwindSafe,
    SMT: UnwindSafe,
    W: UnwindSafe,
    <CF as ComposeFilter<W>>::FS: UnwindSafe,
    <CF as ComposeFilter<W>>::M1: RefUnwindSafe,
    <CF as ComposeFilter<W>>::M2: 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.