pub trait ShapeAndWrite {
// Required method
fn shape_and_write<W: Write>(self, out: W) -> Result<()>;
}Required Methods§
fn shape_and_write<W: Write>(self, out: W) -> Result<()>
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.