pub trait WriterExt<'w, W = File>where
W: Write,{
// Required methods
fn tag(self, name: &str) -> TagBuilder<'w, W>;
fn write_value(&mut self, value: &impl XmlWrite) -> XmlResult<()>;
fn write_text(&mut self, text: &(impl Display + ?Sized)) -> XmlResult<()>;
}Required Methods§
fn tag(self, name: &str) -> TagBuilder<'w, W>
fn write_value(&mut self, value: &impl XmlWrite) -> XmlResult<()>
fn write_text(&mut self, text: &(impl Display + ?Sized)) -> XmlResult<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.