pub trait FastWritable {
// Required method
fn write_into<W: Write + ?Sized>(&self, dest: &mut W) -> Result<()>;
}Expand description
Used internally by askama to speed up writing some types.
Types implementing this trait can be written without needing to employ an fmt::Formatter.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.