[][src]Struct rustfst::algorithms::queues::StateWeightCompare

pub struct StateWeightCompare<W: Semiring, C: Clone + Fn(&W, &W) -> Result<bool>> { /* fields omitted */ }

Implementations

impl<W: Semiring, C: Clone + Fn(&W, &W) -> Result<bool>> StateWeightCompare<W, C>[src]

pub fn new(weights: Vec<W>, less: C) -> Self[src]

pub fn compare(&self, s1: StateId, s2: StateId) -> Result<bool>[src]

Trait Implementations

impl<W: Clone + Semiring, C: Clone + Fn(&W, &W) -> Result<bool>> Clone for StateWeightCompare<W, C>[src]

Auto Trait Implementations

impl<W, C> RefUnwindSafe for StateWeightCompare<W, C> where
    C: RefUnwindSafe,
    W: RefUnwindSafe

impl<W, C> Send for StateWeightCompare<W, C> where
    C: Send,
    W: Send

impl<W, C> Sync for StateWeightCompare<W, C> where
    C: Sync

impl<W, C> Unpin for StateWeightCompare<W, C> where
    C: Unpin,
    W: Unpin

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