pub fn parse_unchecked(input: &str) -> Result<Tree<'_>>
Parse CSS text to a Tree, without capturing error details, for maximum performance without any error details when parsing fails.
Tree
let ast = procss::parse_unchecked("div { .open { color: red; }}").unwrap();