pub trait WriteTo { // Required method fn write_to<W: Write>(&self, w: &mut W) -> Result<()>; }
Write a type to a writer.