pub trait Simplify {
    // Required method
    fn simplify(&self, context: &CompileContext) -> Self;
}

Required Methods§

source

fn simplify(&self, context: &CompileContext) -> Self

Object Safety§

This trait is not object safe.

Implementors§