Trait std::fmt::DebugStable [-] [+] [src]

pub trait Debug {
    fn fmt(&self, &mut Formatter) -> Result<(), Error>;
}

Format trait for the :? format. Useful for debugging, all types should implement this.

Required Methods

fn fmt(&self, &mut Formatter) -> Result<(), Error>

Formats the value using the given formatter.

Implementors