PrinterateDebug

Trait PrinterateDebug 

Source
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§

Source

fn printerd_with_options( self, pretty: bool, indices: bool, ) -> PrintingIteratorDebug<T, Self>

Provided 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.

Implementors§

Source§

impl<T: Debug, I: Iterator<Item = T>> PrinterateDebug<T> for I