Return level of this headline ```rust use orgize::{Org, ast::Headline}; let hdl = Org::parse("* ").first_node:: ().unwrap(); assert_eq!(hdl.level(), 1); let hdl = Org::parse("****** hello").first_node:: ().unwrap(); assert_eq!(hdl.level(), 6); ```
(&self)