Enum automata::nfa::Transition [] [src]

pub enum Transition<I> {
    Epsilon,
    Input(I),
}

Variants

Trait Implementations

impl<I: Debug> Debug for Transition<I>
[src]

Formats the value using the given formatter.

impl<I: Hash> Hash for Transition<I>
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl<I: Eq> Eq for Transition<I>
[src]

impl<I: PartialEq> PartialEq for Transition<I>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<I: Copy> Copy for Transition<I>
[src]

impl<I: Clone> Clone for Transition<I>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more