[][src]Struct tree_automata::bottom_up::width_search::Indexed

pub struct Indexed<Q: State>(pub Q, pub usize);

Trait Implementations

impl<Q: Clone + State> Clone for Indexed<Q>[src]

impl<Q: Debug + State> Debug for Indexed<Q>[src]

impl<T: State + Display> Display for Indexed<T>[src]

impl<Q: Eq + State> Eq for Indexed<Q>[src]

impl<Q: Hash + State> Hash for Indexed<Q>[src]

impl<'e, F: Symbol, Q: State> LanguageState<F, [&'e Automaton<F, Q, NoLabel>]> for Indexed<Q>[src]

impl<Q: PartialEq + State> PartialEq<Indexed<Q>> for Indexed<Q>[src]

impl<Q: State> StructuralEq for Indexed<Q>[src]

impl<Q: State> StructuralPartialEq for Indexed<Q>[src]

Auto Trait Implementations

impl<Q> RefUnwindSafe for Indexed<Q> where
    Q: RefUnwindSafe

impl<Q> Send for Indexed<Q> where
    Q: Send

impl<Q> Sync for Indexed<Q> where
    Q: Sync

impl<Q> Unpin for Indexed<Q> where
    Q: Unpin

impl<Q> UnwindSafe for Indexed<Q> where
    Q: 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<F, Q> LanguageState<F, Automaton<F, Q, NoLabel>> for Q where
    F: Symbol,
    Q: State, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,