Trait markup5ever::serialize::Serializer
source · pub trait Serializer {
// Required methods
fn start_elem<'a, AttrIter>(
&mut self,
name: QualName,
attrs: AttrIter,
) -> Result<()>
where AttrIter: Iterator<Item = AttrRef<'a>>;
fn end_elem(&mut self, name: QualName) -> Result<()>;
fn write_text(&mut self, text: &str) -> Result<()>;
fn write_comment(&mut self, text: &str) -> Result<()>;
fn write_doctype(&mut self, name: &str) -> Result<()>;
fn write_processing_instruction(
&mut self,
target: &str,
data: &str,
) -> Result<()>;
}
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<()>
fn start_elem<'a, AttrIter>( &mut self, name: QualName, attrs: AttrIter, ) -> Result<()>
Serialize the start of an element, for example <div class="test">
.
sourcefn end_elem(&mut self, name: QualName) -> Result<()>
fn end_elem(&mut self, name: QualName) -> Result<()>
Serialize the end of an element, for example </div>
.
sourcefn write_text(&mut self, text: &str) -> Result<()>
fn write_text(&mut self, text: &str) -> Result<()>
Serialize a plain text node.
sourcefn write_comment(&mut self, text: &str) -> Result<()>
fn write_comment(&mut self, text: &str) -> Result<()>
Serialize a comment node, for example <!-- comment -->
.
sourcefn write_doctype(&mut self, name: &str) -> Result<()>
fn write_doctype(&mut self, name: &str) -> Result<()>
Serialize a doctype node, for example <!doctype html>
.
Object Safety§
This trait is not object safe.