[][src]Struct rustfst::algorithms::compose::matchers::SortedMatcher

pub struct SortedMatcher<W: Semiring, F: ExpandedFst<W>> { /* fields omitted */ }

Trait Implementations

impl<W: Clone + Semiring, F: Clone + ExpandedFst<W>> Clone for SortedMatcher<W, F>[src]

impl<W: Debug + Semiring, F: Debug + ExpandedFst<W>> Debug for SortedMatcher<W, F>[src]

impl<W: Semiring, F: ExpandedFst<W>> LookaheadMatcher<W> for SortedMatcher<W, F>[src]

type MatcherData = ()

impl<W: Semiring, F: ExpandedFst<W>> Matcher<W> for SortedMatcher<W, F>[src]

type F = F

type Iter = IteratorSortedMatcher<W, F::TRS>

impl<W: PartialEq + Semiring, F: PartialEq + ExpandedFst<W>> PartialEq<SortedMatcher<W, F>> for SortedMatcher<W, F>[src]

impl<W: Semiring, F: ExpandedFst<W>> StructuralPartialEq for SortedMatcher<W, F>[src]

Auto Trait Implementations

impl<W, F> RefUnwindSafe for SortedMatcher<W, F> where
    F: RefUnwindSafe,
    W: RefUnwindSafe

impl<W, F> Send for SortedMatcher<W, F> where
    F: Send + Sync,
    W: Send

impl<W, F> Sync for SortedMatcher<W, F> where
    F: Send + Sync

impl<W, F> Unpin for SortedMatcher<W, F> where
    W: Unpin

impl<W, F> UnwindSafe for SortedMatcher<W, F> where
    F: RefUnwindSafe,
    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.