pub trait CastableNode<'a> {
    fn to(node: &Node<'a>) -> Option<&'a Self>;
    fn kind() -> NodeKind;
}

Required methods

Implementors