Type Definition bard::util::xml_support::Writer

source ·
pub type Writer<W = File> = Writer<W>;

Trait Implementations§

source§

impl<'w, W> WriterExt<'w, W> for &'w mut Writer<W>where W: Write,

source§

fn tag(self, name: &str) -> TagBuilder<'w, W>

source§

fn write_value(&mut self, value: &impl XmlWrite) -> XmlResult<()>

source§

fn write_text(&mut self, text: &impl Display + ?Sized) -> XmlResult<()>