pub trait DebugExt {
    // Required method
    fn debug(&self) -> String;
}
Expand description

Convenience function to create a string containing the debug representation of an object that implements Debug

Required Methods§

source

fn debug(&self) -> String

Implementors§

source§

impl<T: Debug> DebugExt for T