Trait MultiErrorDisplay

Source
pub trait MultiErrorDisplay<Item: ErrorDisplay>: Stream<Item> {
    // Provided methods
    fn write_all_stderr(&self) { ... }
    fn write_all_to(&self, w: &mut impl Write) { ... }
    fn fmt_all(&self, f: &mut Formatter<'_>) -> Result { ... }
}

Provided Methods§

Source

fn write_all_stderr(&self)

Source

fn write_all_to(&self, w: &mut impl Write)

Source

fn fmt_all(&self, f: &mut Formatter<'_>) -> Result

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§