serialize_into

Function serialize_into 

Source
pub fn serialize_into<T>(dst: &mut impl Writer, src: &T) -> WriteResult<()>
where T: SchemaWrite<Src = T> + ?Sized,
Expand description

Serialize a type into the given writer.

Like serialize, but allows the caller to provide their own writer.