Trait DisplayOnlyForDebugging

Source
pub trait DisplayOnlyForDebugging {
    // Required method
    fn display_only_for_debugging(&self) -> String;
}

Required Methods§

Source

fn display_only_for_debugging(&self) -> String

Obfusctate a part of the object.

Implementors§

Source§

impl<T> DisplayOnlyForDebugging for T
where T: Debug,