pub trait Buildable<T = HIR> {
    fn build(
        &mut self,
        src: String,
        mode: &str
    ) -> Result<CompleteArtifact<T>, IncompleteArtifact<T>>; fn pop_context(&mut self) -> Option<Context>; fn get_context(&self) -> Option<&Context>; }

Required Methods§

Implementors§