[][src]Struct rustfst::algorithms::compose::filter_states::PairFilterState

pub struct PairFilterState<FS1, FS2> { /* fields omitted */ }

Filter state that is the combination of two filter states.

Implementations

impl<FS1, FS2> PairFilterState<FS1, FS2>[src]

pub fn state1(&self) -> &FS1[src]

pub fn state2(&self) -> &FS2[src]

Trait Implementations

impl<FS1: Clone, FS2: Clone> Clone for PairFilterState<FS1, FS2>[src]

impl<FS1: Debug, FS2: Debug> Debug for PairFilterState<FS1, FS2>[src]

impl<FS1: Eq, FS2: Eq> Eq for PairFilterState<FS1, FS2>[src]

impl<FS1: FilterState, FS2: FilterState> FilterState for PairFilterState<FS1, FS2>[src]

type Type = (FS1, FS2)

impl<FS1: Hash, FS2: Hash> Hash for PairFilterState<FS1, FS2>[src]

impl<FS1: PartialEq, FS2: PartialEq> PartialEq<PairFilterState<FS1, FS2>> for PairFilterState<FS1, FS2>[src]

impl<FS1, FS2> StructuralEq for PairFilterState<FS1, FS2>[src]

impl<FS1, FS2> StructuralPartialEq for PairFilterState<FS1, FS2>[src]

Auto Trait Implementations

impl<FS1, FS2> RefUnwindSafe for PairFilterState<FS1, FS2> where
    FS1: RefUnwindSafe,
    FS2: RefUnwindSafe

impl<FS1, FS2> Send for PairFilterState<FS1, FS2> where
    FS1: Send,
    FS2: Send

impl<FS1, FS2> Sync for PairFilterState<FS1, FS2> where
    FS1: Sync,
    FS2: Sync

impl<FS1, FS2> Unpin for PairFilterState<FS1, FS2> where
    FS1: Unpin,
    FS2: Unpin

impl<FS1, FS2> UnwindSafe for PairFilterState<FS1, FS2> where
    FS1: UnwindSafe,
    FS2: 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.