Trait rfw::ecs::schedule::graph_utils::GraphNode[][src]

pub trait GraphNode<Label> {
    fn name(&self) -> Cow<'static, str>;
fn labels(&self) -> &[Label];
fn before(&self) -> &[Label];
fn after(&self) -> &[Label]; }

Required methods

Implementors