use peanuts::xml::composers::Composer; use peanuts::xml::parsers::Parser; use peanuts::xml::Document; #[tokio::main] async fn main() { let (rest, document) = Document::parse( " Background Mark 1 Background Mark 2 Background Mark 3 ahsdkjlfhasdlkjfhkljh ", ) .unwrap(); println!("{:#?}{}", document, rest); let mut stdout = tokio::io::stdout(); document.write(&mut stdout).await.unwrap(); }