Macro pydebug_pydisplay

Source
macro_rules! pydebug_pydisplay {
    ($t:ty) => { ... };
}
Expand description

Use this trait to automatically derive PyDebug and PyDisplay for your type. It uses the Debug and Display traits internally. Because this usage can expose Rust semantics, types, or otherwise look foreign, this should only be used for types which are simple enough to not be distinctly Rust-y.