[][src]Struct rustfst::algorithms::compose::ComposeStateTuple

pub struct ComposeStateTuple<FS> {
    pub fs: FS,
    pub s1: StateId,
    pub s2: StateId,
}

Fields

fs: FSs1: StateIds2: StateId

Trait Implementations

impl<FS: Clone> Clone for ComposeStateTuple<FS>[src]

impl<FS: Debug> Debug for ComposeStateTuple<FS>[src]

impl<FS: Default> Default for ComposeStateTuple<FS>[src]

impl<FS: Eq> Eq for ComposeStateTuple<FS>[src]

impl<FS: Hash> Hash for ComposeStateTuple<FS>[src]

impl<FS: PartialEq> PartialEq<ComposeStateTuple<FS>> for ComposeStateTuple<FS>[src]

impl<FS: PartialOrd> PartialOrd<ComposeStateTuple<FS>> for ComposeStateTuple<FS>[src]

impl<FS> StructuralEq for ComposeStateTuple<FS>[src]

impl<FS> StructuralPartialEq for ComposeStateTuple<FS>[src]

Auto Trait Implementations

impl<FS> RefUnwindSafe for ComposeStateTuple<FS> where
    FS: RefUnwindSafe

impl<FS> Send for ComposeStateTuple<FS> where
    FS: Send

impl<FS> Sync for ComposeStateTuple<FS> where
    FS: Sync

impl<FS> Unpin for ComposeStateTuple<FS> where
    FS: Unpin

impl<FS> UnwindSafe for ComposeStateTuple<FS> where
    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.