pub trait NodeRef: Copy {
    type ParentKind: ParentKind;

    fn kind(&self) -> Self::ParentKind;
    fn set_index(&mut self, index: usize);
}

Required Associated Types

Required Methods

Implementors