pub trait GetWriteInternal: Write {
// Provided methods
fn get_write_mut_internal(&mut self) -> &mut Self { ... }
fn get_write_internal(&mut self) -> &mut Self { ... }
}Provided Methods§
fn get_write_mut_internal(&mut self) -> &mut Self
fn get_write_internal(&mut self) -> &mut Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".