[][src]Enum evm::Capture

pub enum Capture<E, T> {
    Exit(E),
    Trap(T),
}

Variants

Exit(E)
Trap(T)

Trait Implementations

impl<E, T> StructuralEq for Capture<E, T>[src]

impl<E, T> Debug for Capture<E, T> where
    E: Debug,
    T: Debug
[src]

impl<E, T> Copy for Capture<E, T> where
    E: Copy,
    T: Copy
[src]

impl<E, T> Eq for Capture<E, T> where
    E: Eq,
    T: Eq
[src]

impl<E, T> PartialEq<Capture<E, T>> for Capture<E, T> where
    E: PartialEq<E>,
    T: PartialEq<T>, 
[src]

impl<E, T> StructuralPartialEq for Capture<E, T>[src]

impl<E, T> Clone for Capture<E, T> where
    E: Clone,
    T: Clone
[src]

Auto Trait Implementations

impl<E, T> Send for Capture<E, T> where
    E: Send,
    T: Send

impl<E, T> Sync for Capture<E, T> where
    E: Sync,
    T: Sync

impl<E, T> Unpin for Capture<E, T> where
    E: Unpin,
    T: Unpin

impl<E, T> UnwindSafe for Capture<E, T> where
    E: UnwindSafe,
    T: UnwindSafe

impl<E, T> RefUnwindSafe for Capture<E, T> where
    E: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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.

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self