Trait core::fmt::Debug [] [src]

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

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

Required Methods

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

Formats the value using the given formatter.

Implementors