pub trait WriteXML { type Error; // Required method fn write<W: Write>(&self, writer: &mut W) -> Result<(), Self::Error>; }