pub type OptimizerBinding = Binding<Reduced<CoreExpr, Global<CoreExpr>>, Reduced<CoreClosure, Global<CoreClosure>>>;

Aliased Type§

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

Variants§

Trait Implementations§

source§

impl From<CoreClosure> for OptimizerBinding

source§

fn from(expr: CoreClosure) -> Self

Converts to this type from the input type.
source§

impl From<CoreExpr> for OptimizerBinding

source§

fn from(expr: CoreExpr) -> Self

Converts to this type from the input type.