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

pub trait Show {
    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