pub trait Debugger {
    fn display(&self) -> String;

    fn debug(&self, message: &str) { ... }
}

Required Methods

Provided Methods

Implementors