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

pub struct MultiEpsMatcher<W, M> { /* fields omitted */ }

Implementations

impl<W: Semiring, M: Matcher<W>> MultiEpsMatcher<W, M>[src]

pub fn new_with_opts<IM: Into<Option<Arc<M>>>>(
    fst: Arc<Self::F>,
    match_type: MatchType,
    flags: MultiEpsMatcherFlags,
    matcher: IM
) -> Result<Self>
[src]

pub fn matcher(&self) -> &Arc<M>[src]

pub fn clear_multi_eps_labels(&mut self)[src]

pub fn add_multi_eps_label(&mut self, label: Label) -> Result<()>[src]

pub fn remove_multi_eps_label(&mut self, label: Label) -> Result<()>[src]

Trait Implementations

impl<W: Clone, M: Clone> Clone for MultiEpsMatcher<W, M>[src]

impl<W: Debug, M: Debug> Debug for MultiEpsMatcher<W, M>[src]

impl<W: Semiring, M: Matcher<W>> Matcher<W> for MultiEpsMatcher<W, M>[src]

type F = M::F

type Iter = IteratorMultiEpsMatcher<W, M>

Auto Trait Implementations

impl<W, M> RefUnwindSafe for MultiEpsMatcher<W, M> where
    M: RefUnwindSafe,
    W: RefUnwindSafe

impl<W, M> Send for MultiEpsMatcher<W, M> where
    M: Send + Sync,
    W: Send

impl<W, M> Sync for MultiEpsMatcher<W, M> where
    M: Send + Sync,
    W: Sync

impl<W, M> Unpin for MultiEpsMatcher<W, M> where
    W: Unpin

impl<W, M> UnwindSafe for MultiEpsMatcher<W, M> where
    M: 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.