pub trait Output {
// Required method
fn write(&mut self, data: &[u8]);
// Provided methods
fn is_mangling(&self) -> bool { ... }
fn is_real(&self) -> bool { ... }
fn as_write(&mut self) -> AsWrite<'_, Self> ⓘ { ... }
}Required Methods§
Provided Methods§
fn is_mangling(&self) -> bool
fn is_real(&self) -> bool
fn as_write(&mut self) -> AsWrite<'_, Self> ⓘ
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".