Skip to main content

Compilable

Trait Compilable 

Source
pub trait Compilable {
    // Required method
    fn compile(&self, ctx: &Arc<Mutex<Context>>) -> Result<bool, Box<dyn Error>>;
}

Required Methods§

Source

fn compile(&self, ctx: &Arc<Mutex<Context>>) -> Result<bool, Box<dyn Error>>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§