#![allow(clippy::single_match)] use std::io::Read; use std::str::FromStr; use xml::attribute::OwnedAttribute; use xml::reader::{EventReader, XmlEvent}; use super::*; impl ElementReader for Drawing { fn read( r: &mut EventReader, _attrs: &[OwnedAttribute], ) -> Result { let mut drawing = Drawing::new(); loop { let e = r.next(); match e { Ok(XmlEvent::StartElement { name, attributes, .. }) => { let e = WpXMLElement::from_str(&name.local_name) .expect("should convert to XMLElement"); match e { WpXMLElement::Anchor => { let anchor = WpAnchor::read(r, &attributes)?; drawing = drawing.add_anchor(anchor); } _ => {} } } Ok(XmlEvent::EndElement { name, .. }) => { let e = XMLElement::from_str(&name.local_name).unwrap(); if e == XMLElement::Drawing { return Ok(drawing); } } Err(_) => return Err(ReaderError::XMLReadError), _ => {} } } } }