fn read_unique_child<'a, 'input: 'a>(
    parent: Node<'a, 'input>,
    name: (&'static str, &'static str)
) -> Result<Node<'a, 'input>, String>
Expand description

(internal) Find the given tag in a parent Node. Returns error if the tag does not exist or is present in multiple instances.