[][src]Enum gluon_vm::core::interpreter::Reduced

pub enum Reduced<L, G> {
    Local(L),
    Global(G),
}

Variants

Local(L)
Global(G)

Trait Implementations

impl<L: Clone, G: Clone> Clone for Reduced<L, G>[src]

impl<L: Copy, G: Copy> Copy for Reduced<L, G>[src]

impl<L: Debug, G: Debug> Debug for Reduced<L, G>[src]

impl<L, G> Display for Reduced<L, G> where
    L: Display,
    G: Display
[src]

impl<'l> From<&'l Expr<'l>> for Reduced<CExpr<'l>, Global<CoreExpr>>[src]

impl<'l, 'g, C> From<Reduced<&'l Expr<'l>, Global<CoreExpr>>> for Binding<Reduced<CExpr<'l>, Global<CoreExpr>>, C>[src]

impl<'l, 'g, E> From<Reduced<ClosureRef<'l>, Global<CoreClosure>>> for Binding<E, Reduced<ClosureRef<'l>, Global<CoreClosure>>>[src]

Auto Trait Implementations

impl<L, G> RefUnwindSafe for Reduced<L, G> where
    G: RefUnwindSafe,
    L: RefUnwindSafe

impl<L, G> Send for Reduced<L, G> where
    G: Send,
    L: Send

impl<L, G> Sync for Reduced<L, G> where
    G: Sync,
    L: Sync

impl<L, G> Unpin for Reduced<L, G> where
    G: Unpin,
    L: Unpin

impl<L, G> UnwindSafe for Reduced<L, G> where
    G: UnwindSafe,
    L: UnwindSafe

Blanket Implementations

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

impl<T> Any for T where
    T: Any

impl<Id> AsId<Id> for Id where
    Id: ?Sized
[src]

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

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

impl<'_, T> Captures<'_> for T[src]

impl<T> CloneAny for T where
    T: Clone + Any

impl<Choices> CoproductSubsetter<CNil, HNil> for Choices[src]

type Remainder = Choices

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastArc for T where
    T: Downcast + Send + Sync
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

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

impl<D, T> FromPtr<D> for T[src]

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

impl<T, U, I> LiftInto<U, I> for T where
    U: LiftFrom<T, I>, 
[src]

impl<Source> Sculptor<HNil, HNil> for Source[src]

type Remainder = Source

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.