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

Fallback trait (using autoref specialization) for returning "?" when the implementing value does not implement std::fmt::Debug.

Required Methods

Format a debug representation.

Implementations on Foreign Types

Implementors