pub trait WithBoxedSerializer {
// Required method
fn serializer<'ser>(
&'ser self,
name: Option<&'ser str>,
is_root: bool,
) -> Result<BoxedSerializer<'ser>, Error>;
}
Expand description
Trait that returns a boxed version of a Serializer
for any type that
implements WithSerializer
.