pub trait PrinterateDebug<T: Debug>: Iterator<Item = T> + Sized {
// Required method
fn printerd_with_options(
self,
pretty: bool,
indices: bool,
) -> PrintingIteratorDebug<T, Self>;
// Provided method
fn printerd(self) -> PrintingIteratorDebug<T, Self> { ... }
}Required Methods§
fn printerd_with_options( self, pretty: bool, indices: bool, ) -> PrintingIteratorDebug<T, Self>
Provided Methods§
fn printerd(self) -> PrintingIteratorDebug<T, Self>
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.