Trait SerializeElementChildren

Source
pub trait SerializeElementChildren: SerializeChildren {
    // Required method
    fn end(self) -> Result<Self::Ok, Self::Error>;
}
Expand description

A trait for ending the serialization of an element with children.

Required Methods§

Source

fn end(self) -> Result<Self::Ok, Self::Error>

End the serialization of this element with children.

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.

Implementors§