pub fn child_of_kind<'a>(node: Node<'a>, kind: &str) -> Option<Node<'a>>
Find the first direct child of node whose kind() equals kind.
node
kind()
kind
The search stops at the first match and does not allocate an intermediate collection.