pub trait FormattableForComparison {
    fn format(&self) -> String;
}
Expand description

Trait used to turn types into a string we can then diff to show pretty assertions. This allows customizations for certain types to make the generated strings more human readable.

Required Methods

Implementors