pub type GlobalBinding = Binding<Global<CoreExpr>, Global<CoreClosure>>;

Aliased Type§

enum GlobalBinding {
    Expr(Global<CoreExpr>),
    Closure(Global<CoreClosure>),
}

Variants§

Trait Implementations§

source§

impl From<Global<CoreClosure>> for GlobalBinding

source§

fn from(expr: Global<CoreClosure>) -> Self

Converts to this type from the input type.
source§

impl From<Global<CoreExpr>> for GlobalBinding

source§

fn from(expr: Global<CoreExpr>) -> Self

Converts to this type from the input type.