pub trait NodeRef: Copy {
    type ParentKind: ParentKind;

    fn kind(&self) -> Self::ParentKind;
    fn set_index(&mut self, index: usize);
}
Available on crate feature __common only.

Required Associated Types

Required Methods

Implementors