Function bevy::asset::ron::ser::to_writer

source ยท
pub fn to_writer<W, T>(writer: W, value: &T) -> Result<(), Error>
where W: Write, T: Serialize + ?Sized,
Expand description

Serializes value into writer.

This function does not generate any newlines or nice formatting; if you want that, you can use to_writer_pretty instead.