pub trait ProperDebug {
    fn unimock_try_debug(&self) -> String;
}
Expand description

Trait for computing the proper std::fmt::Debug representation of a value.

Required Methods

Format a debug representation.

Implementors