pub trait RefWrite {
// Required method
fn as_write(&self) -> Self::Write<'_>;
}
Expand description
Write
by reference.
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.