Enum cop::lean::search::Action[][src]

pub enum Action<'t, P, C> {
    Prove,
    Reduce(OLit<'t, P, C>, usize),
    Extend(OLit<'t, P, C>, &'t [Contrapositive<P, C, usize>]usize),
}

Variants

Prove
Reduce(OLit<'t, P, C>, usize)
Extend(OLit<'t, P, C>, &'t [Contrapositive<P, C, usize>]usize)

Trait Implementations

impl<'t, P: Clone, C: Clone> Clone for Action<'t, P, C>[src]

Auto Trait Implementations

impl<'t, P, C> RefUnwindSafe for Action<'t, P, C> where
    C: RefUnwindSafe,
    P: RefUnwindSafe

impl<'t, P, C> Send for Action<'t, P, C> where
    C: Sync,
    P: Sync

impl<'t, P, C> Sync for Action<'t, P, C> where
    C: Sync,
    P: Sync

impl<'t, P, C> Unpin for Action<'t, P, C>

impl<'t, P, C> UnwindSafe for Action<'t, P, C> where
    C: RefUnwindSafe,
    P: RefUnwindSafe

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> 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.