pub type RunFn<T> = Rc<dyn Fn(&mut TokenList) -> Result<T, CssParseError>>;
A parser function that takes a TokenList and returns T or Error
pub struct RunFn<T> { /* private fields */ }