pub trait Serializer {
    // Required methods
    fn start_elem<'a, AttrIter>(
        &mut self,
        name: QualName,
        attrs: AttrIter,
    ) -> Result<(), Error>
       where AttrIter: Iterator<Item = (&'a QualName, &'a str)>;
    fn end_elem(&mut self, name: QualName) -> Result<(), Error>;
    fn write_text(&mut self, text: &str) -> Result<(), Error>;
    fn write_comment(&mut self, text: &str) -> Result<(), Error>;
    fn write_doctype(&mut self, name: &str) -> Result<(), Error>;
    fn write_processing_instruction(
        &mut self,
        target: &str,
        data: &str,
    ) -> Result<(), Error>;
}Expand description
Types that are capable of serializing implement this trait
Required Methods§
Sourcefn start_elem<'a, AttrIter>(
    &mut self,
    name: QualName,
    attrs: AttrIter,
) -> Result<(), Error>
 
fn start_elem<'a, AttrIter>( &mut self, name: QualName, attrs: AttrIter, ) -> Result<(), Error>
Serialize the start of an element, for example <div class="test">.
Sourcefn end_elem(&mut self, name: QualName) -> Result<(), Error>
 
fn end_elem(&mut self, name: QualName) -> Result<(), Error>
Serialize the end of an element, for example </div>.
Sourcefn write_comment(&mut self, text: &str) -> Result<(), Error>
 
fn write_comment(&mut self, text: &str) -> Result<(), Error>
Serialize a comment node, for example <!-- comment -->.
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.