pub trait Node<'a> {
    fn next(&'a self) -> RefNodes<'a>;
}

Required methods

Implementors