Trait to_string::DebugDisplay [] [src]

pub trait DebugDisplay {
    fn to_debug_string(&self) -> String;

    fn to_debug(&self) -> String { ... }
}

Required Methods

use to_string::DebugDisplay;
assert_eq!("12", 12.to_debug_string())

Provided Methods

use to_string::DebugDisplay;
assert_eq!("12", 12.to_debug_string())

Implementors