Trait librsnek::compiler::graph::Node [] [src]

pub trait Node {
    fn id(&self) -> usize;
    fn parent_id(&self) -> usize;
}

Trait to define a node with link back to its parent

Required Methods

Implementors