pub trait BuildAssociated<T: Node>: Debug {
    // Required method
    fn build_associated(
        self: Box<Self>,
        compiler: &mut Compiler,
        figure: &mut Figure,
        associated: &mut HierarchyNode<T>
    );
}

Required Methods§

source

fn build_associated( self: Box<Self>, compiler: &mut Compiler, figure: &mut Figure, associated: &mut HierarchyNode<T> )

Implementors§