pub trait FastWritable {
// Required method
fn write_into(
&self,
dest: &mut dyn Write,
values: &dyn Values,
) -> Result<()>;
}Expand description
Types implementing this trait can be written without needing to employ an fmt::Formatter.