pub trait VerboseDisplay: Display {
    fn write_str(&self, w: &mut dyn Write) -> Result { ... }
}

Provided methods

Implementors