[][src]Enum term_rewriting::trace::TraceState

pub enum TraceState {
    Unobserved,
    TooBig,
    Normal,
    Rewritten,
}

The state of a Term at a particular evaluation step in a Trace.

Variants

Unobserved

For a TraceNode which is part of the Trace but has not yet itself been examined or rewritten.

TooBig

For a TraceNode which has been examined and found to have a Term too large for efficient rewriting.

Normal

For a TraceNode which has been examined and whose Term is already in normal form.

Rewritten

For a TraceNode which has been examined and is no longer a leaf node.

Trait Implementations

impl Copy for TraceState[src]

impl PartialEq<TraceState> for TraceState[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for TraceState[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for TraceState[src]

impl Debug for TraceState[src]

impl Hash for TraceState[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

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

Auto Trait Implementations

impl Send for TraceState

impl Sync for TraceState

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]