pub trait ConstructorNodeBuilder {
    fn id(&self) -> NodeId;
    fn build(&self) -> ConstructorNode;
}

Required Methods

Implementors