logo
pub trait GraphNode {
    type Label;

    fn name(&self) -> Cow<'static, str>;
    fn labels(&self) -> &[Self::Label];
    fn before(&self) -> &[Self::Label];
    fn after(&self) -> &[Self::Label];
}

Required Associated Types

Required Methods

Implementors