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

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

Trait Implementations

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

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

type M1 = CF::M1

type M2 = CF::M2

type FS = PairFilterState<CF::FS, WeightFilterState<W>>

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

impl<W: Semiring + WeaklyDivisibleSemiring + WeightQuantize, CF: LookAheadComposeFilterTrait<W>, SMT: MatchTypeTrait> LookAheadComposeFilterTrait<W> for PushWeightsComposeFilter<W, CF, SMT> where
    CF::M1: LookaheadMatcher<W>,
    CF::M2: LookaheadMatcher<W>, 
[src]

Auto Trait Implementations

impl<W, CF, SMT> RefUnwindSafe for PushWeightsComposeFilter<W, CF, SMT> where
    CF: RefUnwindSafe,
    SMT: RefUnwindSafe,
    W: RefUnwindSafe,
    <CF as ComposeFilter<W>>::FS: RefUnwindSafe

impl<W, CF, SMT> Send for PushWeightsComposeFilter<W, CF, SMT> where
    CF: Send,
    SMT: Send,
    W: Send,
    <CF as ComposeFilter<W>>::FS: Send

impl<W, CF, SMT> Sync for PushWeightsComposeFilter<W, CF, SMT> where
    CF: Sync,
    SMT: Sync,
    <CF as ComposeFilter<W>>::FS: Sync

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

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