tagsoup 0.2.0

Fun html-like tag soup parser with zero dependencies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12

/// Visitor control flow for tree traversal.
#[derive(Copy, Clone, Debug, Default, PartialEq)]
pub enum VisitControl {
	/// Descend into the children of the current node.
	#[default]
	Descend,
	/// Skip the children of the current node and continue with the next sibling.
	Continue,
	/// Stop visiting the tree entirely.
	Stop,
}